-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"scripts": {
"build:client": "node esbuild.config.js",
"build:css": "postcss src/client/styles/index.css -o public/css/bundle.css",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:css && npm run build:client && npm run build:server",
"dev": "nodemon",
"dev:server": "ts-node src/server/index.ts",
"dev:all": "npm run build:client && npm run build:css && npm run dev:server",
"start": "node dist/server/index.js"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"body-parser": "^1.20.3",
"esbuild": "^0.23.1",
"express": "^4.21.0",
"firebase-admin": "^12.5.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"pug": "^3.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"tailwindcss": "^3.4.12",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}