-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.58 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "open-product-evaluation-server",
"version": "0.1.0",
"private": true,
"description": "Open Product Evaluation Server is a service that provides an API to evaluate different products e.g. apps or websites",
"scripts": {
"start": "npm run build && node src/index.js",
"dev": "nodemon src/index.js --voyager --playground",
"test": "jest -i",
"build": "vue-cli-service build",
"serve": "vue-cli-service serve",
"mongo": "mongod --logpath ./mongodb.log",
"seed": "node ./tests/seeds/seeder.js",
"lint": "vue-cli-service lint --no-fix",
"test:e2e": "vue-cli-service test:e2e",
"inspect": "vue-cli-service inspect > output.js",
"setup": "node ./install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/th-koeln/open-product-evaluation-server.git"
},
"author": "Fabian Daugs, Dennis Dubbert, Sascha Lemke",
"license": "MIT",
"bugs": {
"url": "https://github.com/th-koeln/open-product-evaluation-server/issues"
},
"homepage": "https://github.com/th-koeln/open-product-evaluation-server#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.12",
"@fortawesome/free-regular-svg-icons": "5.7.2",
"@fortawesome/free-solid-svg-icons": "5.6.3",
"@fortawesome/vue-fontawesome": "0.1.4",
"apollo-cache-inmemory": "1.3.0",
"apollo-client": "2.3.7",
"apollo-link": "1.2.3",
"apollo-link-context": "1.0.8",
"apollo-link-error": "1.1.7",
"apollo-link-ws": "1.0.12",
"apollo-upload-client": "9.0.0",
"apollo-utilities": "1.0.27",
"archiver": "3.0.0",
"bootstrap": "4.3.1",
"bootstrap-vue": "2.0.0-rc.11",
"chalk": "2.4.1",
"core-js": "2.6.4",
"d3": "5.9.1",
"dotenv": "6.0.0",
"es6-promise": "4.2.4",
"express": "4.16.3",
"fs-extra": "6.0.1",
"graphql": "0.13.2",
"graphql-iso-date": "3.6.1",
"graphql-shield": "2.2.6",
"graphql-tag": "2.9.2",
"graphql-voyager": "1.0.0-rc.26",
"graphql-yoga": "1.17.4",
"inquirer": "6.2.2",
"json-2-csv": "3.4.1",
"jsonwebtoken": "8.3.0",
"merge-graphql-schemas": "1.5.8",
"mongodb": "3.0.10",
"mongoose": "5.4.12",
"sharp": "0.21.3",
"shortid": "2.2.8",
"shortid-36": "0.1.2",
"stream-buffers": "3.0.2",
"subscriptions-transport-ws": "0.9.15",
"underscore": "1.9.1",
"vue": "2.5.21",
"vue-instant": "1.0.2",
"vue-router": "3.0.1",
"vue-select": "2.5.1",
"vuedraggable": "2.17.0",
"vuelidate": "0.7.4",
"vuex": "3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.4.0",
"@vue/cli-plugin-e2e-cypress": "3.4.0",
"@vue/cli-plugin-eslint": "3.2.2",
"@vue/cli-plugin-pwa": "3.2.2",
"@vue/cli-plugin-unit-mocha": "3.4.0",
"@vue/cli-service": "3.4.0",
"@vue/test-utils": "1.0.0-beta.28",
"eslint": "5.13.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-cypress": "2.2.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-vue": "5.1.0",
"jest": "23.6.0",
"lint-staged": "7.2.2",
"mongo-seeding": "3.1.0",
"node-sass": "4.11.0",
"nodemon": "1.17.5",
"sass-loader": "7.0.1",
"supertest": "3.1.0",
"vue-template-compiler": "2.5.21",
"wait-on": "3.0.1"
},
"jest": {
"setupTestFrameworkScriptFile": "./tests/integration/setup.js",
"testRegex": "./tests/integration/.*.test.js$",
"verbose": true
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint --no-fix",
"git add"
],
"*.vue": [
"vue-cli-service lint --no-fix",
"git add"
]
}
}