-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "express-framework",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "tailwind -i public/index.css -o public/style.css -w | nodemon -x tsx src/index.ts",
"build": "vite build && tailwind -i public/index.css -o public/style.css",
"start": "NODE_ENV=production tsx src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-ejs-layouts": "^2.5.4",
"@types/node": "^20.11.4",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"nodemon": "^3.0.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"dependencies": {
"@types/http-errors": "^2.0.4",
"express": "^4.18.2",
"htmx.org": "^1.9.10",
"liquidjs": "^10.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.0",
"vite-express": "^0.14.1"
}
}