-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.86 KB
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
{
"name": "hat-trick-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"generate-api": "openapi-generator generate -i docs/openapi.yaml -g typescript-angular -o generated-sources/openapi --additional-properties=\"ngVersion=6.1.7\"",
"start:dev": "npm run watch-ts",
"watch-ts": "tsc-watch --onSuccess \"nodemon dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eKirad/hat-trick-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eKirad/hat-trick-backend/issues"
},
"homepage": "https://github.com/eKirad/hat-trick-backend#readme",
"devDependencies": {
"@openapitools/openapi-generator-cli": "1.0.10-4.2.3",
"@types/bcryptjs": "2.4.2",
"@types/cors": "^2.8.17",
"@types/express": "4.17.1",
"@types/morgan": "1.9.6",
"@types/uuid": "7.0.2",
"dotenv": "16.3.1",
"tslint": "5.20.0",
"typescript": "5.2.2"
},
"dependencies": {
"@types/bcrypt": "5.0.0",
"@types/body-parser": "1.17.1",
"@types/i18next-fs-backend": "1.1.2",
"@types/jsonwebtoken": "8.3.4",
"@types/winston": "2.4.4",
"bcryptjs": "2.4.3",
"body-parser": "1.20.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"cors": "2.8.5",
"crypto": "1.0.1",
"express": "4.18.2",
"express-validator": "6.12.1",
"helmet": "3.21.0",
"http-status-codes": "2.1.4",
"i18next": "20.2.1",
"i18next-fs-backend": "1.1.1",
"i18next-http-middleware": "3.1.1",
"jsonwebtoken": "9.0.2",
"mongoose": "7.5.3",
"morgan": "1.10.0",
"morgan-json": "1.1.0",
"nodemon": "3.0.1",
"ts-node": "10.2.1",
"tsc-watch": "6.0.4",
"uuid": "7.0.2",
"winston": "3.2.1"
}
}