-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "visor-backend",
"version": "0.1.0",
"description": "This is a Vanguard owned Service to collect Data from Star Citizen and safe it.",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "nodemon",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"prod": "node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FPGSchiba/visor-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FPGSchiba/visor-backend/issues"
},
"homepage": "https://github.com/FPGSchiba/visor-backend#readme",
"dependencies": {
"aws-sdk": "^2.1264.0",
"dotenv": "^16.0.3",
"encrypt-uint8array": "^1.0.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-winston": "^4.2.0",
"typescript": "^4.5.5",
"uuid": "^9.0.0",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/migrate-mongo": "^8.1.2",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.14",
"@types/uuid": "^9.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0"
}
}