forked from OzakIOne/scoop-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 958 Bytes
/
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
{
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"esb": "esbuild src/frontend/react/index.tsx --bundle --minify --sourcemap --outfile=esbuild/assets/bundle.js",
"fastify": "ts-node-dev src/backend/fastify.ts"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@types/node": "^15.14.3",
"esbuild": "^0.12.9",
"execa": "^5.1.1",
"fastify": "^3.18.0",
"fastify-cors": "^6.0.1",
"fastify-static": "^4.2.2",
"lodash": "^4.17.21",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-window": "^1.8.3",
"@vitejs/plugin-react-refresh": "^1.3.1",
"react-window": "^1.8.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.2",
"vite": "^2.3.7"
}
}