-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "avalon-dealer",
"type": "module",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.13",
"@types/node": "^20.11.17",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dprint": "^0.48.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"express": "^4.21.2",
"i18next": "^24.2.1",
"qrcode.react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.0",
"typescript": "^5.4.2",
"upath": "^2.0.1",
"vite": "^5.1.4"
},
"optionalDependencies": {
"@dprint/linux-x64-glibc": "^0.48.0"
},
"scripts": {
"dev-app": "vite",
"build-app": "vite build",
"preview-app": "npm run build-app && vite preview",
"dev-server": "tsx ./server/main.ts",
"build-server": "esbuild server/main.ts --bundle --platform=node --outfile=build/server/server.cjs",
"preview-server": "npm run build-server && node ./build/server/server.cjs",
"validate-dprint": "dprint check",
"validate-eslint": "eslint .",
"validate-typescript": "tsc"
}
}