-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "stwno-mensa_api",
"version": "3.0.0",
"description": "A json- / grpc- / graphql-wrapper around the inofficial API for different canteens managed by the Studentenwerk Niederbayern/Oberpfalz.",
"repository": {
"type": "git",
"url": "https://github.com/dotWee/stwno-mensa_api.git"
},
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"nodemon": "nodemon src/server.js",
"test": "mocha --recursive"
},
"author": "Lukas Wolfsteiner <lukas@wolfsteiner.media>",
"license": "WTFPL",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.31.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.4"
},
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"apollo-server-express": "^2.25.2",
"body-parser": "^1.20.3",
"csv-parse": "^4.16.3",
"express": "^4.21.2",
"express-graphql": "^0.7.1",
"fs": "0.0.1-security",
"google-protobuf": "^3.21.4",
"graphql": "^14.7.0",
"graphql-tools": "^4.0.8",
"grpc": "^1.24.11",
"iconv-lite": "^0.4.24",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"path": "^0.12.7",
"swagger-ui-express": "^4.6.3"
},
"nodemonConfig": {
"ignore": [
"data/*"
]
}
}