-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "hagen",
"version": "0.0.1",
"description": "Website",
"private": true,
"main": ".",
"author": "Jens Reimann",
"license": "EPLv2",
"devDependencies": {
"autoprefixer": "^9.7.3",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.13.0",
"postcss-cli": "^7.1.0",
"stylelint": "^12.0.1",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.13.0",
"watch": "^1.0.2"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"dependencies": {
"bootstrap": "4.4.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.1"
},
"scripts": {
"css:compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/custom.scss build/assets/bootstrap/bootstrap.css",
"css:prefix": "postcss build/assets/bootstrap/*.css --replace",
"css:minify": "cleancss --level 1 --source-map --source-map-inline-sources --output build/assets/bootstrap/bootstrap.min.css build/assets/bootstrap/bootstrap.css"
}
}