-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "pvp-texas-porker-node-serve",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "nodemon bin/server.ts",
"copy-static": "ts-node copyStatic.ts",
"ts-build": "tsc",
"build": "npm run ts-build && npm run copy-static",
"prod": "cross-env NODE_ENV=production pm2 start pnpm --name pvp-texas-porker-node-serve -- run start"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"express": "~4.16.1",
"express-jwt": "^8.4.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"openai": "^4.12.1",
"pm2": "^5.3.0",
"socket.io": "^4.7.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.3",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.2",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.21",
"@types/node": "^20.4.5",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-require-jsdoc-except": "^1.5.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"shelljs": "^0.8.5",
"typescript": "^5.1.6"
}
}