-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.79 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
{
"name": "deliverator",
"description": "Manage your items in Destiny",
"version": "0.10.0",
"author": "Stephen Lam <[email protected]>",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.dev.js --hot --inline",
"build": "node ./build/build.js",
"lint:js": "eslint src/**/*.js src/**/*.vue",
"lint:scss": "stylelint **/*.vue --config .stylelintrc.json",
"lint:all": "npm run lint:js && npm run lint:scss",
"test": "npm run lint:all"
},
"browserslist": [
"last 2 versions",
"not ie <= 11",
"not android <= 62"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.39",
"axios": "^0.16.2",
"fontfaceobserver": "^2.0.13",
"jszip": "^3.1.5",
"lodash": "^4.17.5",
"normalize.css": "^8.0.0",
"sql.js": "github:ascendancyy/sql.js",
"uuid": "^3.2.1",
"vue": "^2.5.13",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.39",
"@babel/plugin-transform-runtime": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-stage-3": "^7.0.0-beta.39",
"autoprefixer": "^7.2.5",
"babel-eslint": "^8.0.2",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-preval": "^1.6.3",
"babel-plugin-transform-undefined-to-void": "^6.8.3",
"chalk": "^2.3.0",
"chalk-cli": "^4.0.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.9",
"dotenv": "^4.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^4.2.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.7.1",
"offline-plugin": "^4.9.0",
"ora": "^1.3.0",
"pixrem": "^4.0.1",
"postcss": "^6.0.17",
"postcss-calc": "^6.0.1",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.0",
"rimraf": "^2.6.2",
"sass-extract": "^2.1.0",
"sass-extract-loader": "^1.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"stylelint": "^8.3.1",
"stylelint-order": "^0.8.0",
"svg-sprite-loader": "^3.4.1",
"svgo": "^1.0.4",
"svgo-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.1.8",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.10",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.10.0",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1",
"webpack-notifier": "^1.5.1"
}
}