-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
101 lines (101 loc) · 2.76 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
96
97
98
99
100
101
{
"name": "wordcard",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config config/webpack.config.js",
"dev": "npm run watch",
"watch": "cross-env NODE_ENV=development webpack --watch --config config/webpack.config.js",
"prod": "bash build/build.sh",
"build:minified": "cross-env NODE_ENV=production webpack --config config/webpack.config.js",
"cleaninstall": "rm -rf node_modules && npm i"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"backbone": "^1.3.3",
"backbone.chromestorage": "^0.0.7",
"bulma": "^0.5.3",
"chart.js": "^2.7.0",
"css-selector-generator": "^1.1.0",
"dexie": "^2.0.4",
"dom-chef": "^2.0.0",
"element-ui": "^2.13.0",
"fuzzaldrin-plus": "^0.5.0",
"getdomain": "^1.0.7",
"grapnel": "^0.6.4",
"jquery": "^3.2.1",
"js-base64": "^2.4.5",
"keyboardjs": "^2.3.4",
"leancloud-storage": "^3.2.1",
"normalize.css": "^7.0.0",
"translation.js": "^0.7.5",
"underscore": "^1.8.3",
"urijs": "^1.19.1",
"vue": "^2.5.17",
"vue-chartjs": "^2.8.7",
"vue-input-tag": "0.0.16",
"vue-router": "^3.1.5",
"vue-social-sharing": "^2.2.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.1.2",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.0.5",
"cssnano": "^3.10.0",
"eslint": "^4.7.2",
"eslint-plugin-vue": "^6.1.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"css-loader": "^3.4.0",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^1.5.2",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.2",
"sass-loader": "^6.0.6",
"style-loader": "^1.0.2",
"svg-inline-loader": "^0.8.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-loader": "^15.4.1",
"vue-template-compiler": "^2.5.17",
"webextension-polyfill": "^0.1.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"chrome": 59
}
}
],
"es2017",
"stage-0"
],
"plugins": [
[
"transform-runtime",
{
"polyfill": true,
"regenerator": true
}
]
]
}
}