-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
61
62
63
{
"name": "new-project",
"version": "1.0.0",
"scripts": {
"start": "NODE_ENV=development gulp",
"lint": "NODE_ENV=production eslint --fix src/",
"test": "npm run lint",
"develop": "NODE_ENV=development gulp",
"build": "NODE_ENV=production gulp build",
"preflight": "NODE_ENV=production gulp preflight",
"deploy": "NODE_ENV=production gulp deploy",
"serve": "NODE_ENV=production gulp serve"
},
"repository": {
"type": "git",
"url": "[email protected]:user/repository.git"
},
"private": true,
"license": "UNLICENSED",
"homepage": "http://example.com",
"author": "Name <[email protected]>",
"description": "Project description.",
"config": {
"host": "0.0.0.0",
"port": 3000,
"ghooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"ansi-colors": "^4.1.1",
"autoprefixer": "^9.7.5",
"browser-sync": "^2.26.7",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^6.8.0",
"ghooks": "^2.0.4",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-inline-source": "^4.0.0",
"gulp-postcss": "^8.0.0",
"gulp-pug": "^4.0.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylus": "^2.7.0",
"gulp-svg-sprite": "^1.5.0",
"merge2": "^1.3.0",
"node-notifier": "^6.0.0",
"postcss-svgo": "^4.0.2",
"postcss-url": "^8.0.0",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-terser": "^5.3.0"
}
}