-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "wallet-backend-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && npx tsc",
"dev": "nodemon --config nodemon.json --exec \"npx tsc && yarn start\"",
"dev-docker": "npx nodemon --config nodemon.json --exec \"npx tsc --outdir /dist && yarn start-docker\"",
"start": "node -r source-map-support/register dist/src/app.js",
"start-docker": "node -r source-map-support/register /dist/src/app.js",
"typeorm": "typeorm-ts-node-commonjs -d src/AppDataSource.ts",
"typeorm-raw": "typeorm-ts-node-commonjs"
},
"keywords": [],
"author": "",
"description": "",
"dependencies": {
"@sd-jwt/core": "^0.2.1",
"@simplewebauthn/server": "^7.4.0",
"@transmute/did-key-ed25519": "^0.3.0-unstable.10",
"ajv": "^8.12.0",
"apn": "^2.2.0",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-ws": "^5.0.2",
"fcm-notification": "^2.0.0",
"firebase-admin": "^11.5.0",
"inversify": "^6.0.1",
"jose": "^4.9.3",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"mysql2": "^3.2.0",
"node-fetch": "2",
"randomstring": "^1.2.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.29.3",
"ts-results": "^3.3.0",
"typeorm": "^0.3.9",
"uuid": "^9.0.0",
"ws": "^8.14.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@simplewebauthn/typescript-types": "^7.4.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.191",
"@types/node": "^18.7.17",
"@types/node-fetch": "^2.6.4",
"@types/randomstring": "^1.1.8",
"@types/uuid": "^9.0.2",
"@types/ws": "^8.5.5",
"nodemon": "^2.0.19",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}