-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 KB
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
{
"name": "webservice",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"async-mutex": "^0.1.4",
"axios": "^0.21.1",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.4",
"core-js": "^3.1.2",
"debounce": "^1.2.0",
"rete": "^1.4.2",
"rete-area-plugin": "^0.2.1",
"rete-auto-arrange-plugin": "^0.4.0",
"rete-connection-plugin": "^0.8.3",
"rete-context-menu-plugin": "^0.5.2",
"rete-dock-plugin": "^0.2.1",
"rete-readonly-plugin": "^0.4.1",
"rete-vue-render-plugin": "^0.5.0",
"timeago.js": "^4.0.1",
"uuid": "^3.3.3",
"v-jsoneditor": "^1.2.3",
"vue": "^2.6.10",
"vue-burger-menu": "^2.0.3",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.1.3",
"vue-simple-uploader": "^0.7.2",
"vue-spinner": "^1.0.3",
"vue-sse": "^1.0.2",
"vue-timeago": "^5.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}