-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.61 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
{
"name": "web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "thinkmix",
"license": "ISC",
"scripts": {
"test": "yarn build --m test",
"local": "yarn dev --m local",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js ",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js",
"server": "live-server ./ --port=8888"
},
"bin": {
"bat": "bat.js"
},
"dependencies": {
"jquery": "^1.11.3"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"autoprefixer": "^8.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^0.1.19",
"clipboard": "^2.0.4",
"compression-webpack-plugin": "^1.1.11",
"core-js": "3",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"eslint": "6.7.2",
"eslint-config-standard": "^7.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"glob": "^7.1.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"html-withimg-loader": "^0.1.16",
"inquirer": "^6.2.2",
"live-server": "^1.2.0",
"mob-multi-picker": "^1.2.2",
"node-sass": "^4.13.0",
"optimist": "^0.6.1",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"ora": "^3.3.1",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"postcss-plugin-px2rem": "^0.7.0",
"postcss-url": "^7.3.2",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"raw-loader": "^1.0.0",
"sass-loader": "^7.0.1",
"script-loader": "^0.7.2",
"shelljs": "^0.8.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"browserslist": [
"defaults",
"not ie < 7",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}