-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@spruceid/ssx-server",
"version": "2.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Spruce Systems, Inc.",
"license": "Apache-2.0 OR MIT",
"scripts": {
"build": "tsc",
"doc": "yarn doc:extractor && yarn doc:documenter",
"doc:extractor": "api-extractor run",
"doc:documenter": "api-documenter generate -i temp -o ../../documentation/reference/ssx-server",
"watch": "tsc -w",
"lint": "eslint --ext .ts --fix src/",
"clean": "rimraf dist && rimraf temp",
"test": "jest"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:spruceid/ssx.git"
},
"bin": "bin/ssx-server.js",
"dependencies": {
"@spruceid/ssx-core": "2.1.0",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"ethers": "^5.7.2",
"express": "^4.18.3",
"express-session": "^1.18.0",
"rc": "^1.2.8",
"siwe": "^2.1.4"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.23.37",
"@microsoft/api-extractor": "^7.42.3",
"@types/cookie": "^0.5.4",
"@types/express-session": "^1.18.0",
"@types/node": "^18.19.22",
"@types/on-headers": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.8.8",
"redis": "^4.6.13",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}