forked from cmda-minor-web/progressive-web-apps-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 964 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "progressive-web-apps",
"version": "0.0.0",
"private": true,
"engines": {
"node": "14.16.0"
},
"scripts": {
"start": "node app.js",
"prestart": "npm run build",
"build": "gulp css && gulp js",
"deploy": "node app.js",
"dev:watch": "gulp watch",
"predev": "gulp css && gulp js",
"dev": "node app.js"
},
"dependencies": {
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "~4.16.1",
"fetch": "^1.1.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-minify-ejs": "^1.0.3",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"*.json"
]
}
}