-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "react-vite-express-starter",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "concurrently -k -n \"API,WEB\" -c \"bgBlue.bold,bgGreen.bold\" \"ts-node-dev -P tsconfig.server.json src/server/\" \"vite\"",
"start": "node dist/server/",
"build": "tsc && vite build && tsc -p tsconfig.server.json",
"preview": "vite preview"
},
"dependencies": {
"@types/cors": "^2.8.12",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.18.1",
"helmet": "^6.0.0",
"heroku-ssl-redirect": "^0.1.1",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remult": "^0.16.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cookie-session": "^2.0.44",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/pg": "^8.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"concurrently": "^7.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.4",
"vite": "^3.0.7"
}
}