forked from voorhoede/performance-masterclass-2017-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.9 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "performance-masterclass",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start:optimised",
"start:original": "nodemon server-original.js",
"start:optimised": "nodemon server-optimised.js",
"build": "npm-run-all --parallel build:*",
"build:html": "node tasks/html.js",
"build:scripts": "node tasks/scripts.js",
"build:styles": "node tasks/styles.js",
"prebuild": "rimraf dist/optimised/ && npm run copy:optimised",
"postbuild": "",
"copy:original": "mkdirp dist/original/ && ncp src/original/ dist/original/",
"copy:optimised": "mkdirp dist/optimised/ && ncp src/optimised/ dist/optimised/",
"watch": "npm-run-all --parallel watch:*",
"watch:html": "chokidar 'src/optimised/**/*.html' --command 'npm run build:html'",
"watch:scripts": "chokidar 'src/optimised/**/*.js' --command 'npm run build:scripts'",
"watch:styles": "chokidar 'src/optimised/**/*.css' --command 'npm run build:styles'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"accepts": "1.3.3",
"chokidar-cli": "1.2.0",
"cookie-parser": "1.4.3",
"critical": "0.8.1",
"event-stream": "3.3.4",
"globby": "6.1.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.1",
"gulp-brotli": "1.2.0",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.2",
"gulp-filter": "4.0.0",
"gulp-gzip": "1.4.0",
"gulp-htmlmin": "3.0.0",
"gulp-rev": "7.1.2",
"gulp-rev-css-url": "0.1.0",
"gulp-rev-delete-original": "0.2.2",
"gulp-rev-replace": "0.4.3",
"gulp-uglify": "2.0.0",
"gulp-wrap": "0.13.0",
"mime": "1.3.4",
"mkdirp": "0.5.1",
"ncp": "2.0.0",
"ngrok": "2.2.5",
"nodemon": "1.11.0",
"npm-run-all": "3.1.2",
"rimraf": "2.5.4",
"shrink-ray": "0.1.3"
},
"dependencies": {
"body-parser": "1.15.2",
"express": "4.14.0",
"nunjucks": "3.0.0"
}
}