-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (31 loc) · 900 Bytes
/
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
{
"name": "keyless",
"version": "1.0.0",
"description": "Keyless car rental service application",
"type": "module",
"scripts": {
"start": "node src/server/server.js",
"start": "webpack serve --mode development",
"build": "webpack --mode production && npm run build:css",
"build:css": "tailwindcss -i ./src/styles/styles.css -o ./public/css/styles.css",
"build:debug": "webpack --mode development --progress"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"pg": "^8.12.0",
"stripe": "^16.8.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"css-loader": "^6.11.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.0",
"postcss-loader": "^6.2.1",
"tailwindcss": "^3.4.10",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}