-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "node-boilerplate",
"version": "0.7.3",
"description": "Build, watch, lint and test Front-end assets",
"main": "package.json",
"scripts": {
"clean": "rm -rf dist/",
"rebuild": "npm run clean && npm run build",
"build": "webpack --config tools/webpack.prod.js",
"watch": "webpack --config tools/webpack.dev.js",
"analyze": "webpack --config tools/webpack/webpack.test.js",
"test": "jasmine",
"test-self": "webpack --config tools/webpack/webpack.test.self.js",
"lint": "npm run gulp-lint && npm run es-lint",
"es-lint": "eslint ./linters/.eslintrc.js ./src/js/",
"gulp-lint": "gulp lint",
"debug": "gulp build --i debug/src/ --o debug/dist/ --gulpfile tools/gulpfile.js",
"debug:install": "git clone --depth=1 https://github.com/BillieBobbel23/test-assets.git tools/debug/"
},
"keywords": [
"SHOULD",
"BE",
"USEFUL",
"RIGHT?",
"webpack",
"jasmine",
"boilerplate",
"linting",
"testing"
],
"author": "Ralph van Barneveld",
"license": "ISC",
"devDependencies": {
"file-loader": "^4.2.0"
},
"dependencies": {
"copy-webpack-plugin": "^5.0.4",
"csso-webpack-plugin": "^1.0.0-beta.12",
"eslint": "^6.4.0",
"eslint-plugin-react": "^7.12.0",
"gulp": "^3.9.1",
"gulp-csslint": "^1.0.1",
"gulp-csso": "^3.0.1",
"gulp-filter": "^5.1.0",
"gulp-htmllint": "0.0.16",
"gulp-stats": "0.0.4",
"gulp-stylestats": "^3.1.0",
"imagemin-webpack-plugin": "^2.3.0",
"jasmine": "^3.1.0",
"lodash": "^4.17.15",
"node-sass": "^4.10.0",
"sass-loader": "8.0.0",
"sass-webpack-plugin": "^1.0.3",
"svg-scaler": "^0.1.5",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.2"
},
"repository": "https://github.com/BillieBobbel23/node-boilerplate"
}