-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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": "express-typeorm-starter",
"version": "0.1.0",
"description": "Starter for Express TypeORM",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"compile": "ts-node build.ts && tsc",
"dev": "nodemon src/index.ts | pino-pretty",
"dev:debug": "nodemon --exec 'node -r ts-node/register --inspect-brk' src/index.ts | pino-pretty",
"test": "mocha test/**/*.ts --exit",
"test:debug": "mocha --inspect-brk test/**/*.ts --exit",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.4",
"pg": "^7.8.0",
"pg-native": "^3.0.0",
"pino": "^5.8.1",
"reflect-metadata": "^0.1.13",
"swagger-express-middleware": "^1.1.1",
"typeorm": "^0.2.12"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/pino": "^5.20.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nodemon": "^1.18.9",
"pino-pretty": "^2.5.0",
"shelljs": "^0.8.3",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"author": "Procedure Technologies Pvt. Ltd.",
"license": "MIT"
}