-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.54 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
83
84
85
86
{
"name": "bootstrap-content-templates",
"description": "An extension for Squiz Matrix to enable Bootstrap based Content Templates.",
"version": "0.1.1",
"homepage": "https://matrix.squiz.net/",
"author": {
"name": "Bart Banda",
"url": "https://matrix.squiz.net/"
},
"license": "MIT",
"bugs": {},
"keywords": [
"html5",
"css3",
"es6",
"frontend",
"sass",
"less",
"static",
"boilerplate",
"webpack"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.config.js",
"start:dist": "cross-env NODE_ENV=production webpack-dev-server --config ./config/webpack.config.js && http-server ./dist -o",
"lint:js": "./node_modules/.bin/eslint \"./src/**/*.js\"",
"lint:styles": "stylelint \"./src/**/*.css\" \"./src/**/*.scss\" \"!./src/**/*.min.css\"",
"build:dist": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js",
"deploy": "node ./config/site.deploy.js"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.1",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^4.3.0",
"glob": "^7.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"image-webpack-loader": "^5.1.0",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-sass": "^0.4.4",
"sass-loader": "^7.3.1",
"style-loader": "^1.2.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-concat-plugin": "^3.0.0",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0"
},
"dependencies": {
"bootstrap": "^4.5.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"enquirer": "^2.3.6",
"figlet": "^1.5.0",
"ftp-deploy": "^2.3.7",
"jquery": "^3.5.1",
"normalize.css": "^8.0.1",
"reset-css": "^4.0.1",
"sanitize.css": "^11.0.1",
"webpack-dev-server": "^3.11.0"
},
"volta": {
"node": "12.22.12"
}
}