This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.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
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
{
"name": "typescript-api",
"description": "Skeleton project for easy extendable TypeScript APIs.",
"version": "0.0.0",
"author": {
"name": "Pascal Iske",
"email": "[email protected]",
"url": "https://pascaliske.dev"
},
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"build": "rimraf dist && tsc --project tsconfig.json",
"watch": "nodemon --exec \"yarn run build && yarn run start\" --watch src --ext ts",
"lint": "tslint --project tsconfig.json --fix",
"test": "ava dist/modules/*/*.test.js",
"format": "prettier --write \"**/*.{ts,md}\"",
"changelog": "standard-changelog --release-count 1"
},
"repository": {
"url": "https://github.com/pascaliske/typescript-api.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/pascaliske/typescript-api/issues"
},
"private": true,
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"config": "^3.3.8",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^6.0.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.20",
"routing-controllers": "^0.9.0",
"socket-controllers": "^0.0.5",
"socket.io": "^4.5.3",
"tslib": "^2.4.1",
"typedi": "0.8.0",
"typeorm": "^0.3.0",
"typeorm-routing-controllers-extensions": "^0.2.0",
"typeorm-typedi-extensions": "^0.4.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^15.6.1",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.12",
"ava": "^5.0.1",
"chalk": "^4.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sql.js": "^1.8.0",
"standard-changelog": "^2.0.27",
"supertest": "^6.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
}
}