-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.95 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
{
"name": "gondolin",
"version": "0.0.1",
"description": "The gondolin backend.",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/terrestris/gondolin"
},
"keywords": [
"gondolin"
],
"author": "terrestris GmbH & Co. KG",
"contributors": [
{
"name": "Kai Volland",
"email": "[email protected]",
"url": "https://github.com/kaivolland"
},
{
"name": "Lukas Lohoff",
"email": "[email protected]",
"url": "https://github.com/lukaslohoff"
}
],
"main": "index.js",
"scripts": {
"lint": "tslint -p tsconfig.json && tsc --noEmit --project tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"release": "np --no-yarn",
"start": " node --require ts-node/register index.ts",
"start:dev": "NODE_ENV=development node --require ts-node/register index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/bluebird": "^3.5.33",
"@types/express": "^4.17.2",
"@types/node": "^13.13.32",
"@types/passport-jwt": "^3.0.3",
"@types/validator": "^12.0.1",
"@types/websocket": "1.0.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-ws": "^4.0.0",
"graphql": "^14.7.0",
"graphql-relay": "^0.6.0",
"graphql-sequelize": "^9.4.0",
"jsonwebtoken": "^9.0.0
"lodash": "^4.17.20",
"moment": "^2.29.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sequelize": "^5.22.3",
"sequelize-cli": "^5.5.1",
"sequelize-typescript": "^1.1.0",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"winston": "^3.3.3"
},
"devDependencies": {
"np": "^6.2.0"
},
"engines": {
"node": ">=10",
"npm": ">=5.6.0"
}
}