-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.89 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
{
"name": "cipes",
"version": "0.0.0",
"description": "Git-Mining System mit Hilfe vonContinuous Integration",
"main": "cipes.js",
"scripts": {
"lint": "eslint .",
"bbuild": "babel src -d build",
"vbuild": "vue-cli-service build",
"dev": "vue-cli-service serve",
"dev-middle": "nodemon --exec babel-node --config babel.config.json src/index.js",
"dev-server": "nodemon cipes.js",
"prod": "npm run prod-semi && npm run vbuild",
"prod-github": "npm run prod-semi-github && npm run vbuild",
"prod-gitlab": "npm run prod-semi-gitlab && npm run vbuild",
"prod-semi": "npm run bbuild && node build/semi.js",
"prod-semi-github": "npm run bbuild && node build/semi-github.js",
"prod-semi-gitlab": "npm run bbuild && node build/semi-gitlab.js",
"prod-middle": "npm run bbuild && node build/index.js",
"prod-server": "node cipes.js"
},
"author": "Raphael Lackner <code@rala.io>",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"@metrichor/jmespath-plus": "^0.3.1",
"arangojs": "^5.7.0",
"bluebird": "^3.4.6",
"body-parser": "^1.18.3",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.21.1",
"chroma-js": "^1.3.4",
"emoji-replace": "^1.0.1",
"event-to-promise": "^0.7.0",
"express": "^4.16.4",
"fs-extra-promise": "^0.4.1",
"github": "^13.1.1",
"inflection": "^1.12.0",
"jmespath": "^0.15.0",
"jquery": "^3.5.1",
"lodash": "^4.17.11",
"lodash-inflection": "^1.5.0",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"nodegit": "^0.25.0",
"opn": "^4.0.2",
"popper.js": "^1.16.1",
"rc": "^1.2.8",
"request-promise": "^4.2.2",
"socket.io": "^1.7.2",
"url-join": "^2.0.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.11",
"yargs": "^6.6.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"archiver": "^1.3.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.2.2",
"core-js": "^3.8.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-vue": "^4.7.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.10",
"prettier": "^1.5.3",
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
}
}