-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.51 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.51 KB
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
82
83
{
"name": "pnpm-cra",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^13.5.0",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.1",
"@types/jest": "^27.5.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.10.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"express": "^5.1.0",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.28.2",
"nextjs-toploader": "^3.8.16",
"node-cron": "3.0.3",
"nodemon": "^3.1.10",
"pnpm": "^10.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.5.3",
"react-scripts": "^5.0.1",
"react-select": "^5.10.1",
"recharts": "^2.15.3",
"ts-node": "^10.9.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "npm-run-all --parallel frontend-start backend-start",
"start:windows": "npm-run-all --parallel frontend-start backend-start:windows",
"frontend-start": "react-scripts start",
"backend-start": "nodemon --delay 1.0 --watch backend --ext ts --exec \"ts-node backend/server.ts\"",
"backend-start:windows": "cross-env NODE_ENV=development nodemon --delay 1.0 --watch backend --ext ts --exec 'ts-node backend/server.ts'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "pnpm@8.6.5+sha512.9b3b5fbe7789978a3d80259f42514a8a8ea05588496c56b3594541728989f6eff2b29c127075313325afc4e79dd5ae78deba28f9a7888e9e554241cea1358502",
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.1",
"@types/node": "^16.18.126",
"@types/node-cron": "^3.0.11",
"autoprefixer": "^10.4.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.4",
"tailwindcss": "^3.0.0",
"tsx": "^4.19.4",
"typescript": "^4.9.5"
}
}