This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "middleman",
"version": "1.0.0",
"private": true,
"scripts": {
"development": "webpack --watch --progress --colors --config webpack.dev.js",
"production": "webpack --config webpack.prod.js"
},
"devDependencies": {
"autoprefixer": "~8.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bootstrap": "^4.3.1",
"browser-sync": "2.24.4",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"cross-env": "^3.2.3",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"lodash": "^4.17.21",
"node-sass": "^4.12.0",
"postcss-loader": "~2.1.1",
"randomatic": ">=3.0.0",
"run-sequence": "^2.2.0",
"sass-loader": "^6.0.6",
"webpack": "^3.11.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.2",
"debug": "^2.6.9",
"docsearch.js": "^2.6.3",
"headroom.js": "0.9.4",
"jquery": "^3.4.0",
"js-yaml": "^3.13.1",
"numeral": "^2.0.6",
"popper.js": "^1.14.3"
},
"resolutions": {
"debug": "^2.6.9",
"js-yaml": "^3.13.1",
"set-value": "^2.0.1"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"browserslist": [
"last 2 versions",
"> 1%",
"not ie <= 10",
"not <= 0.4%",
"not OperaMini all"
]
}