-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 923 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
{
"name": "meteoweb-pc",
"version": "1.0.0",
"description": "MeteoWeb",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-limiter": "^1.6.1",
"express-session": "^1.17.1",
"helmet": "^3.23.3",
"minify": "^5.1.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4"
},
"scripts": {
"build": "minify ./assets/private/client.js > ./assets/public/client.min.js && minify ./assets/private/client.css > ./assets/public/client.min.css && minify ./assets/private/index.html > ./assets/public/index.min.html",
"start": "npm run-script build && nodemon ./server.js"
},
"author": "KronosDev <[email protected]>",
"license": "MIT"
}