-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"type": "module",
"scripts": {
"dev": "NODE_ENV=develop nodemon",
"build": "npm run clean && node build.js && node buildClient.js && npm run build:css",
"clean": "rimraf dist && rimraf public/static",
"build:css": "npx tailwindcss -i ./src/main.css -o ./public/static/main.css",
"build:test": "vite build",
"watch": "npx nodemon",
"test": "ts-node src/index.ts"
},
"dependencies": {
"axios": "^1.6.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.2",
"log4js": "^6.4.4",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.14.6",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"autoprefixer": "^10.4.17",
"nodemon": "^3.0.3",
"postcss": "^8.4.33",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-plugin-node": "^3.1.0"
}
}