This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.47 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
{
"name": "democracy-server",
"version": "0.2.32",
"main": "dist/index.js",
"author": "Manuel Ruck",
"license": "Apache2",
"private": true,
"scripts": {
"build": "tsc",
"serve": "node dist/index.js",
"dev": "ts-node-dev src/index.ts",
"dev:local": "ts-node-dev -r dotenv/config src/index.ts",
"generate": "graphql-codegen --config codegen.self.yml",
"apollo:codegen": "apollo client:codegen --endpoint=http://localhost:3100 --excludes=node_modules/* --target typescript --globalTypesFile=./__generated__/globalTypes.ts",
"lint": "yarn lint:es && 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"
},
"dependencies": {
"@democracy-deutschland/bundestag.io-definitions": "^1.0.0",
"@democracy-deutschland/democracy-common": "^0.2.7",
"apn": "^2.2.0",
"apollo-server-express": "^2.9.12",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"cron": "^1.7.2",
"dataloader": "^2.0.0",
"elasticsearch": "^16.5.0",
"express": "^4.17.1",
"express-status-monitor": "^1.2.7",
"graphql": "^14.5.8",
"graphql-date": "^1.0.3",
"graphql-middleware": "^4.0.2",
"graphql-parse-resolve-info": "^4.5.0",
"graphql-shield": "^7.2.1",
"http2": "^3.3.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"merge-graphql-schemas": "^1.7.6",
"moment": "^2.22.2",
"mongoose": "^5.9.5",
"ms": "^2.1.2",
"node-gcm": "^1.0.2",
"p-iteration": "^1.1.8",
"react-native-rsa": "^0.0.3",
"request": "^2.87.0",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cron": "^1.7.2",
"@types/elasticsearch": "^5.0.36",
"@types/graphql-date": "^1.0.5",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.149",
"@types/mongoose": "^5.7.6",
"@types/ms": "^0.7.31",
"@types/request": "^2.48.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"ts-unused-exports": "^6.2.1",
"typescript": "^3.9.5",
"utility-types": "^3.10.0"
}
}