-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "softkave-server",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node build/src/index.js",
"watch": "tsc -w",
"test": "env-cmd -f \".env.test\" jest --config=jest.config.ts --detectOpenHandles",
"gen-secret-key": "node -e console.log(require('crypto').randomBytes(128).toString('hex'))",
"gen-vapid-keys": "npx web-push generate-vapid-keys --json",
"render-email-templates": "tsc --project email-templates/tsconfig.json && node email-templates/code/email-templates/index.js",
"dev": "tsc && env-cmd -f \".env\" npm start",
"prod-debug": "tsc && env-cmd -f \".env.prod\" npm start",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@sentry/node": "^6.7.2",
"@sentry/tracing": "^6.7.2",
"argon2": "^0.28.2",
"aws-sdk": "^2.1064.0",
"body-parser": "^1.20.1",
"cors": "2.8.5",
"date-fns": "^2.28.0",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"express-jwt": "^8.4.1",
"graphql": "^15.8.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"mongoose": "^6.4.6",
"nanoid": "^3.1.7",
"quill-delta": "^4.2.2",
"randomcolor": "0.5.4",
"socket.io": "^4.0.2",
"type-fest": "^3.1.0",
"uuid": "3.3.2",
"validator": "^13.7.0",
"web-push": "^3.4.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/body-parser": "^1.19.2",
"@types/chance": "^1.1.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-graphql": "^0.9.0",
"@types/express-jwt": "^6.0.4",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.4.0",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/multer-s3": "^2.7.11",
"@types/node": "^17.0.12",
"@types/randomcolor": "^0.5.6",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@types/web-push": "^3.3.0",
"chance": "^1.1.8",
"env-cmd": "^10.1.0",
"gts": "^3.1.1",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"tslint": "^5.18.0",
"typescript": "^4.9.4"
},
"keywords": []
}