-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "canes-bingo",
"version": "2.0.0",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
"build": "vite build",
"dev:ui": "vite",
"db:create": "node bin/createDatabase.js"
},
"dependencies": {
"@ant-design/colors": "^7.1.0",
"@ant-design/icons": "^5.5.1",
"@reduxjs/toolkit": "^2.2.7",
"antd": "^5.21.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.1",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.27.4",
"mysql2": "^3.11.3",
"react": "^18.3.1",
"react-admin": "^4.16.20",
"react-dom": "^18.3.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.26.2",
"redux-persist": "^6.0.0",
"tsx": "^4.19.1",
"use-debounce": "^10.0.3",
"vite-express": "^0.14.1"
},
"devDependencies": {
"@mui/lab": "^5.0.0-alpha.165",
"@mui/material": "^5.16.7",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-mysql-session": "^3.0.6",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.9",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.isequal": "^4.5.8",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"lodash.camelcase": "^4.3.0",
"lodash.isequal": "^4.5.0",
"nodemon": "^3.1.7",
"sass": "^1.79.3",
"typescript": "^5.6.2",
"vite": "^4.5.5"
}
}