-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "haste-api",
"version": "0.0.1",
"main": "index.js",
"author": "el-tumero",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node ./dist/index.js",
"pm2": "NODE_ENV=production pm2 start ./dist/index.js",
"test": "jest -i",
"build": "tsc",
"dev": "NODE_ENV=development nodemon ./src/index.ts",
"prototypes": "yarn proto-loader-gen-types --longs=String --enums=String --defaults --oneofs --grpcLib=@grpc/grpc-js --outDir=src/types/proto src/proto/*.proto"
},
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"@grpc/proto-loader": "^0.7.3",
"@types/jsonwebtoken": "^8.5.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jest": "^29.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"otplib": "^12.0.1",
"qrcode": "^1.5.1",
"supertest": "^6.2.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.15",
"@types/qrcode": "^1.5.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"ts-jest": "^29.0.0",
"typescript": "^4.8.2"
}
}