-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
64
65
66
67
68
69
70
71
72
{
"name": "pathfindervisualizer",
"version": "3.2.0",
"description": "Webpack based boilerplate with SASS and babel ES6/7 support.",
"homepage": "https://github.com/WeAreAthlon/frontend-webpack-boilerplate#readme",
"scripts": {
"serve": "webpack-dev-server",
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"bundle": "npm install && npm run watch",
"production": "cross-env NODE_ENV=production webpack --mode=production",
"lint-sass": "sass-lint -v -q --format=compact",
"lint-js": "eslint --ext .js src/js/"
},
"keywords": [
"webpack",
"boilerplate",
"template",
"setup"
],
"author": "João Bairrada",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:WeAreAthlon/frontend-webpack-boilerplate.git"
},
"bugs": {
"url": "https://github.com/WeAreAthlon/frontend-webpack-boilerplate/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"autoprefixer": "^9.6.1",
"babel-polyfill": "^6.26.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"ajv": "^6.10.2",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-lint": "^1.13.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.2"
}
}