-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "express-typescript",
"version": "1.1.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsbh/express-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rsbh/express-typescript/issues"
},
"homepage": "https://github.com/rsbh/express-typescript#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^5.1.5",
"@types/jest": "^27.4.1",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^7.0.0",
"faker": "^5.1.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"express": "^4.17.3",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.2.1",
"typeorm": "^0.2.44"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}