This repository has been archived by the owner on Jun 10, 2021. It is now read-only.
forked from demokratie-live/bundestag.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.92 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
{
"name": "bundestag.io",
"version": "0.1.40",
"main": "built/index.js",
"author": "DEMOCRACY Deutschland e.V. <[email protected]>",
"contributors": [
"Manuel Ruck <[email protected]>",
"Ulf Gebhardt"
],
"license": "Apache2",
"private": true,
"scripts": {
"build": "tsc",
"start": "node built/index.js",
"dev": "ts-node-dev --watch=resolvers,schemas --respawn src/index.ts",
"lint": "yarn lint:ts && yarn lint:exports",
"lint:es": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint:ts": "tsc --noEmit",
"lint:exports": "ts-unused-exports ./tsconfig.json --excludePathsFromReport=generated --excludePathsFromReport=resolvers --excludePathsFromReport=/schemas --excludePathsFromReport=graphqlContext.ts",
"generate": "graphql-codegen"
},
"dependencies": {
"@democracy-deutschland/bundestag.io-definitions": "1.0.2",
"@democracy-deutschland/bundestagio-common": "^0.1.2",
"apollo-server-express": "^2.3.3",
"axios": "^0.19.2",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"eslint": "^7.4.0",
"express": "^4.16.2",
"express-status-monitor": "^1.2.3",
"graphql": "^15.2.0",
"graphql-date": "^1.0.3",
"lodash": "^4.17.10",
"merge-graphql-schemas": "^1.5.0",
"mongoose": "^5.9.24",
"mongoose-diff-history": "^2.1.0",
"winston": "^3.0.0",
"winston-mongodb": "^5.0.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.0",
"@graphql-codegen/typescript": "^1.17.0",
"@graphql-codegen/typescript-resolvers": "^1.17.0",
"@types/express-status-monitor": "^1.2.1",
"@types/graphql-date": "^1.0.5",
"@types/lodash": "^4.14.157",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint-config-prettier": "^6.11.0",
"ts-node-dev": "^1.0.0-pre.49",
"ts-unused-exports": "^6.2.1",
"typescript": "^3.9.5"
}
}