-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.43 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
73
74
75
76
77
78
79
80
81
82
{
"name": "awostarter",
"description": "Webpack 4 static pages template",
"version": "0.0.2",
"keywords": [
"webpack",
"twig",
"sass"
],
"author": {
"name": "Andrzej Wojtczyk",
"email": "[email protected]",
"web": "https://wojtczyk.pl"
},
"bugs": "https://github.com/awojtczyk/awostarter/issues",
"repository": {
"type": "git",
"url": "git://github.com/awojtczyk/awostarter.git"
},
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"lint:js": "./node_modules/.bin/eslint src/js/*.js",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:html": "pa11y-ci ./src/**/*.html",
"start:dev": "webpack-dashboard -- webpack-dev-server --config webpack.config.dev.js --watch-poll",
"start": "webpack --config webpack.config.prod.js && http-server ./dist -o",
"deploy": "webpack --config webpack.config.prod.js && ./deploy",
"init": "./init"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "9.3.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"expose-loader": "^0.7.5",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-webpack-plugin": "^2.3.0",
"jquery": "^3.3.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pa11y-ci": "^2.1.1",
"plop": "^2.1.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0",
"twig-html-loader": "^0.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"what-input": "^5.1.3"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"foundation-sites": "^6.5.0",
"js-cookie": "^2.2.0",
"webpack-dashboard": "^2.0.0"
}
}