-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2 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
{
"name": "webpack-starter-kit",
"version": "1.0.0",
"description": "Webpack starter kit",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rm -rf coverage dist",
"dev": "webpack-dev-server --config ./webpack/webpack.dev.js --mode development",
"lint": "eslint src/js/*",
"lint:fix": "eslint src/js/*",
"build": "webpack --config ./webpack/webpack.prod.js --mode production",
"build:icons": "npx pwa-asset-generator ./src/assets/img/logo.svg public/pwa -i ./src/pages/index.html -m ./public/manifest.json --path-override pwa --type png -b \"#91e5f6\"",
"test": "jest --watchAll",
"test:report": "yarn clean-coverage && jest --coverage",
"publish": "yarn run build && gh-pages -d dist"
},
"keywords": [
"Webpack",
"JavaScript",
"pwa",
"boilerplate",
"jest",
"babel",
"eslint",
"prettier",
"sass"
],
"author": "Adrian Karbowniczyn",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"autoprefixer": "^9.8.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "4.2.2",
"websocket-extensions": "^0.1.4"
}
}