This repository has been archived by the owner on Nov 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.53 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
{
"name": "backend",
"version": "1.9.2",
"private": true,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -b",
"dev": "DEBUG=app:* PORT=8080 nodemon",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check",
"sentry": "cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases new $npm_package_version && cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases files $npm_package_version upload-sourcemaps --rewrite ./build && cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases finalize $npm_package_version",
"start": "cross-env TS_NODE_PROJECT=./ NODE_OPTIONS=--trace-warnings node -r tsconfig-paths/register build/index.js",
"start:ts": "cross-env DEBUG=app::* NODE_OPTIONS=--trace-warnings ts-node -r tsconfig-paths/register --files src/index.ts",
"sync-dotenv": "sync-dotenv",
"types": "cross-env TS_NODE_PROJECT=./tsconfig.json TS_NODE_FILES=true graphql-codegen --config codegen.yml",
"typeorm": "ts-node ./node_modules/.bin/typeorm -f ./ormconfig.ts",
"validate": "run-s check compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fortify-Labs/Fortify.git"
},
"author": "Thomas Kosiewski",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Fortify-Labs/Fortify/issues"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/time": "^2.0.2",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-resolvers": "^1.19.1",
"@sentry/cli": "^1.64.2",
"@sentry/types": "^6.4.1",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/cookie-parser": "^1.4.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@types/passport": "^1.0.6",
"@types/passport-oauth2": "^1.4.10",
"@types/passport-steam": "^1.0.1",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cpx": "^1.2.1",
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"gts": "^3.1.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"opn-cli": "^3.1.0",
"rimraf": "^3.0.2",
"sync-dotenv": "^1.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@sentry/node": "^6.4.1",
"apollo-metrics": "^1.0.1",
"apollo-server-express": "^2.24.1",
"apollo-server-plugin-base": "^0.12.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-redis-subscriptions": "^2.4.0",
"graphql-subscriptions": "^1.2.1",
"graphql-tools": "^7.0.5",
"inversify": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^1.15.0",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"passport-steam": "^1.0.15",
"pg": "^8.6.0",
"prom-client": "^13.1.0",
"reflect-metadata": "^0.1.13",
"sofa-api": "^0.10.2",
"swagger-ui-express": "^4.1.6",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.32",
"winston": "^3.3.3"
}
}