-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.46 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
{
"name": "web-static-boilerplate",
"version": "1.0.0",
"description": "Minimalist static website boilerplate and build process to quickly get projects going.",
"author": "Mathias Brouilly",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bymathias/web-static-boilerplate.git"
},
"bugs": {
"url": "https://github.com/bymathias/web-static-boilerplate/issues"
},
"homepage": "https://github.com/bymathias/web-static-boilerplate#readme",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"directories": {
"test": "test"
},
"scripts": {
"dev": "webpack-dev-server -r @babel/register --progress",
"build": "webpack -r @babel/register --progress",
"pretest": "eslint webpack.config.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.10.4",
"@fortawesome/fontawesome-free": "^5.13.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"brand-colors": "^2.1.1",
"bulma": "^0.9.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^4.3.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"purgecss-webpack-plugin": "^2.3.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"sitemap-webpack-plugin": "^0.8.1",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.0",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.6.5"
}
}