forked from ueberdosis/alldocs.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.52 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
87
88
89
90
91
92
93
94
95
{
"name": "webpack-frontend-boilerplate",
"private": true,
"version": "1.0.0",
"description": "",
"scripts": {
"start": "./node_modules/@babel/node/bin/babel-node.js webpack/server.js --env=development",
"build": "./node_modules/@babel/node/bin/babel-node.js webpack/build.js --env=production"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import"
],
"comments": false,
"compact": true
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 9"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.4",
"browser-sync": "^2.26.7",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-vue": "^6.1.2",
"fibers": "^4.0.2",
"file-loader": "^5.0.2",
"glob": "^7.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.20.0",
"imagemin-webpack-plugin": "^2.1.5",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.0",
"modernizr": "^3.8.0",
"modernizr-loader": "^1.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.0.3",
"postcss": "^7.0.26",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"sass": "^1.24.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^2.3.1",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.22.3",
"webpack-manifest-plugin": "^2.2.0",
"webpack-svgstore-plugin": "^4.0.3"
},
"dependencies": {
"collect.js": "^4.19.0",
"core-js": "3.6.2",
"dropzone": "^5.5.1",
"form-serialize": "^0.7.2",
"gridilydidily": "^3.0.1",
"poly-fluid-sizing": "^1.1.0",
"uuid": "^3.3.3",
"vue": "^2.6.11"
}
}