-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.77 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
{
"name": "Overlord",
"version": "0.1.0",
"description": "Studs20 backend",
"repository": {
"type": "git",
"url": "https://github.com/studieresan/overlord"
},
"author": "Studieresan",
"license": "MIT",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"test": "jest",
"postinstall": "npm run build",
"serve": "nodemon dist/server.js --delay 0.1",
"serve-prod": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,blue.bold\" \"npm run watch-ts\" \"npm run serve\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"lint-fix": "tslint -p tsconfig.json -c tslint.json --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,blue.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"deploy": "gcloud app deploy"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.712.0",
"@aws-sdk/s3-request-presigner": "^3.712.0",
"@sendgrid/mail": "^6.1.4",
"@sentry/node": "5.29.2",
"@sentry/types": "^5.29.2",
"@types/async": "^3.2.5",
"@types/bcrypt-nodejs": "0.0.31",
"@types/body-parser": "^1.19.0",
"@types/compression": "1.7.0",
"@types/connect": "^3.4.34",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/errorhandler": "1.5.0",
"@types/express": "^4.17.11",
"@types/express-graphql": "^0.9.0",
"@types/geojson": "^7946.0.7",
"@types/graphql": "^14.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"async": "^3.2.0",
"aws-sdk": "^2.870.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.19.0",
"certifi": "^14.5.15",
"compression": "^1.7.4",
"connect": "^3.7.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-validator": "5.3.1",
"flat": "^5.0.2",
"graphiql": "^1.4.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.7.0",
"mongoose": "6.0.5",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"false": {},
"devDependencies": {
"@types/jest": "^26.0.21",
"concurrently": "^6.0.0",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.6",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
}
}