forked from Johann-S/bs-customizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "bs-customizer",
"version": "1.0.0",
"description": "Create custom Bootstrap 4.x builds",
"private": true,
"scripts": {
"deploy": "gh-pages --dist ./ --src \"{index.html,dist/**}\"",
"dev": "webpack-dev-server --open --mode=development --config webpack.config.js",
"prod": "webpack --mode=production --config webpack.config.js",
"standard": "standard --parser babel-eslint",
"test": "npm run standard && npm run prod"
},
"keywords": [
"customizer",
"bootstrap",
"bootstrap4",
"javascript"
],
"author": "Johann-S <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.1.3",
"boxicons": "^1.7.1",
"jquery": "^3.3.1",
"jszip": "^3.1.5",
"sass.js": "^0.10.11",
"uglifyjs-browser": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-css": "^4.2.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.0",
"glob-all": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"purgecss-webpack-plugin": "^1.3.0",
"script-ext-html-webpack-plugin": "^2.0.1",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"write-file-webpack-plugin": "^4.4.1"
},
"standard": {
"ignore": [
"src/js/lib/*.js"
]
},
"engines": {
"node": ">=10"
}
}