-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "fedcm-typescript-IDP",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rimraf dist",
"start": "node ./dist/bin/www.js",
"start-local": "LOCALHOST=true PORT=8080 node ./dist/bin/www.js",
"build": "npm run clean && tsc && node copy-static.js",
"postinstall": "if [ \"$NODE_ENV\" = \"production\" ]; then npm run build; fi"
},
"dependencies": {
"@simplewebauthn/server": "^7.3.1",
"base64url": "^3.0.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"debug": "~2.6.9",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http-errors": "~1.6.3",
"jade": "^0.29.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"nodeman": "^1.1.2",
"pouchdb": "^8.0.1",
"pouchdb-find": "^8.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.2.2",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/http-errors": "^2.0.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.0",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-core": "^7.0.11",
"@types/uuid": "^9.0.1",
"rimraf": "^5.0.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}