-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "deepspeakapi",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "tsc && node ./dist/bin/www.js",
"watch_node": "nodemon ./src/bin/www.ts",
"dev": "DEBUG=$npm_package_name:* pnpm run watch_node",
"test": "jest src",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"compression": "^1.8.0",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^7.2.0",
"jsdom": "^24.1.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.11.0",
"morgan": "~1.9.1",
"multer": "1.4.5-lts.1",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.9",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/dompurify": "^3.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.19",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.5.0",
"nodemon": "^3.1.9",
"prettier": "3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}