-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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": "play-zone.games",
"version": "1.0.0",
"description": "Web app for my server.",
"main": "app.js",
"type": "module",
"scripts": {
"build:css": "postcss src/styles/global.css -o public/css/tailwind.css",
"start": "node app.js",
"dev": "nodemon app.js",
"watch:css": "nodemon --exec 'npm run build:css' --watch src/styles --watch views --ext ejs,css"
},
"keywords": [],
"author": "Rostyslav L.",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.16",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mysql2": "^3.7.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"socket.io": "^4.7.4",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}