-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"dev:server": "tsx --watch src/app.ts",
"dev:client": "vite",
"dev": "npm-run-all --parallel dev:server dev:client",
"production": "cross-env NODE_ENV=production tsx src/app.ts",
"preview": "npm-run-all --serial build production",
"build": "vite build",
"allocate": "tsx src/allocate.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"json-bigint": "^1.0.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"qs": "^6.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"request-ip": "^3.3.0",
"sequelize": "^6.21.4",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/json-bigint": "^1.0.4",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",
"@types/request-ip": "^0.0.41",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.2.1",
"sequelize-cli": "^6.4.1",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2"
}
}