-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
94 lines (94 loc) · 3.14 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
{
"name": "steward",
"version": "1.0.0",
"description": "",
"scripts": {
"build:plus": "cross-env NODE_ENV=production webpack --config config/webpack.stewardplus.config.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.steward.config.js",
"dev:plus": "npm run watch:plus",
"dev": "npm run watch",
"watch:plus": "cross-env NODE_ENV=developmen webpack --mode=development --watch --config config/webpack.stewardplus.config.js",
"watch": "webpack --watch --config config/webpack.steward.config.js",
"prod:plus": "bash build/build-plus.sh",
"prod": "bash build/build.sh",
"build:minified:plus": "cross-env NODE_ENV=production webpack --config config/webpack.stewardplus.config.js",
"build:minified": "cross-env NODE_ENV=production webpack --config config/webpack.steward.config.js",
"cleaninstall": "rm -rf node_modules && npm i"
},
"author": "",
"license": "ISC",
"dependencies": {
"@json-editor/json-editor": "^2.5.1",
"@types/backbone": "^1.4.5",
"@types/chrome": "0.0.126",
"@types/jquery": "^3.5.4",
"@types/json-schema": "^7.0.6",
"@types/underscore": "^1.10.24",
"@ungap/url-search-params": "^0.1.2",
"axios": "^0.18.0",
"backbone": "^1.3.3",
"blueimp-md5": "^2.12.0",
"bootstrap": "^4.5.3",
"dayjs": "^1.7.5",
"dexie": "^2.0.4",
"element-ui": "^1.4.6",
"fuzzaldrin-plus": "^0.5.0",
"http-vue-loader": "^1.4.1",
"is-in-viewport": "^3.0.4",
"jquery": "^3.5.1",
"jquery.waitforimages": "^2.4.0",
"keyboardjs": "^2.3.4",
"lodash.orderby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"math-expression-evaluator": "^1.2.17",
"minimatch": "^3.0.4",
"normalize.css": "^7.0.0",
"pinyin": "^2.8.3",
"qrcode": "^1.2.0",
"spectre.css": "^0.5.9",
"toastr": "^2.1.2",
"translation.js": "^0.7.5",
"underscore": "^1.8.3",
"url-regex": "^4.1.1",
"vue": "^2.5.17",
"vue-grid-layout": "^2.3.7",
"vue-router": "^3.1.5",
"webextension-polyfill-ts": "^0.22.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"archiver": "^4.0.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-vue": "^6.2.2",
"fast-glob": "^3.2.4",
"file-loader": "^6.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.4"
}
}