-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "transdb-backend",
"version": "2.0.0",
"description": "",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "npx tsc --sourceMap false",
"start": "node dist/main.js",
"dev": "npx tsc --sourceMap true && node dist/main.js --dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TransDB-de/backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TransDB-de/backend/issues"
},
"homepage": "https://github.com/TransDB-de/backend#readme",
"dependencies": {
"@overnightjs/core": "^1.7.6",
"@transdb-de/filter-lang": "github:transdb-de/filter-lang",
"axios": "^0.24.0",
"axios-rate-limit": "^1.3.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"express-slow-down": "^1.4.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"libphonenumber-js": "^1.9.43",
"mongodb": "^4.2.0",
"nanoid": "^3.1.30",
"node-cleanup": "^2.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/express-slow-down": "^1.3.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongodb": "^4.0.7",
"@types/node": "^16.11.9",
"@types/node-cleanup": "^2.1.2",
"typescript": "^4.5.2"
}
}