-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.38 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
{
"name": "democracy-server",
"version": "0.2.66",
"main": "dist/index.js",
"author": "Manuel Ruck",
"license": "Apache2",
"private": true,
"scripts": {
"build": "tsc",
"serve": "node dist/index.js",
"dev": "ts-node-dev -r dotenv/config src/index.ts --watch src/graphql",
"generate": "graphql-codegen",
"apollo:codegen": "apollo client:codegen --endpoint=http://localhost:3000 --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",
"prepare": "husky install",
"release": "standard-version",
"test": "jest --config jest.unit.config.js",
"test:integration": "jest --config jest.integration.config.js"
},
"dependencies": {
"@bmatei/apollo-prometheus-exporter": "^2.1.1",
"@democracy-deutschland/bundestag.io-definitions": "^1.0.0",
"@democracy-deutschland/democracy-common": "0.2.12-alpha.3",
"apn": "^2.2.0",
"apollo-server-express": "^2.9.12",
"body-parser": "^1.19.0",
"compare-versions": "^6.0.0-rc.1",
"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",
"prom-client": "^14.0.1",
"react-native-rsa": "^0.0.3",
"request": "^2.87.0",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript-mongodb": "^3.0.0",
"@graphql-codegen/typescript-resolvers": "^4.1.0",
"@jest/globals": "^29.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cron": "^1.7.2",
"@types/elasticsearch": "^5.0.36",
"@types/graphql-date": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.149",
"@types/mongoose": "^5.7.6",
"@types/ms": "^0.7.31",
"@types/node": "^16",
"@types/request": "^2.48.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"apollo": "^2.33.9",
"babel-jest": "^29.7.0",
"dotenv": "^10.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.4",
"ts-node-dev": "^2.0.0",
"ts-unused-exports": "^6.2.1",
"typescript": "^4.3.5",
"utility-types": "^3.10.0"
}
}