-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"name": "ui",
"version": "0.0.0",
"private": true,
"scripts": {
"build:client": "vite build",
"build:server": "esbuild server/main.ts --bundle --platform=node --minify --format=cjs --target=node16 > dist/main.js",
"build": "tsc --noEmit && run-p build:client build:server",
"dev:client": "vite",
"dev:server": "tsx server/main.ts",
"dev": "cross-env NODE_ENV=development dotenv -c local -- run-p dev:client dev:server",
"prod": "cross-env NODE_ENV=production dotenv -c prod -- node dist/main.js",
"serve": "vite preview"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"@fastify/static": "^6.5.0",
"@fastify/websocket": "^7.0.1",
"@reduxjs/toolkit": "^1.8.5",
"fastify": "^4.7.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/lodash": "^4.14.186",
"@types/node": "^16.9.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.4.12",
"cross-env": "^7.0.3",
"dotenv-cli": "^6.0.0",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"stylus": "^0.59.0",
"tsx": "^3.9.0",
"typescript": "^4.8.4",
"vite": "^3.1.4"
}
}