-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "arora-api",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/guidojw/arora-api.git"
},
"license": "MIT",
"author": "Guido de Jong",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc -p tsconfig.production.json",
"lint": "eslint src",
"start": "node bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@guidojw/bloxy": "^5.7.6",
"@sentry/integrations": "^7.11.1",
"@sentry/node": "^7.11.1",
"axios": "^0.27.2",
"axios-retry": "^3.3.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-schedule": "^2.1.0",
"pg": "^8.8.0",
"pluralize": "^8.0.0",
"typeorm": "^0.2.41",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.184",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.5",
"@types/pluralize": "^0.0.29",
"@types/validator": "^13.7.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.22.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^48.0.0",
"reflect-metadata": "^0.1.13",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}