-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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
{
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build && vite build --ssr",
"server": "ts-node ./server",
"server:prod": "cross-env NODE_ENV=production ts-node ./server"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@preact/preset-vite": "^2.1.7",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.19",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitejs/plugin-react": "^1.2.0",
"@windicss/plugin-interaction-variants": "^1.0.0",
"autoprefixer": "^10.4.2",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.3",
"mobx": "^6.4.2",
"mobx-react-lite": "^3.3.0",
"nanoid": "^3.3.1",
"postcss": "^8.4.7",
"preact": "^10.6.6",
"preact-render-to-string": "^5.1.20",
"react": "npm:@preact/compat@^17.0.3",
"react-dom": "npm:@preact/compat@^17.0.3",
"react-hook-form": "^7.27.1",
"react-icons": "^4.3.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-plugin-ssr": "^0.3.59",
"vite-plugin-windicss": "^1.8.3",
"windicss": "^3.5.1"
}
}