-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.41 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
{
"name": "express-with-typescript-boilerplate",
"version": "1.0.0",
"author": "Hassan Azhar <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts,.tsx --fix",
"clean": "rimraf coverage build tmp",
"dev": "nodemon -e \"yml, yaml, js, ts, tsx, json\" -x \"ts-node\" src/server.ts | bunyan -o simple",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"compile": "tsc -p tsconfig.release.json",
"watch:compile": "tsc -w -p tsconfig.release.json",
"test": "npm run compile && npm run lint && jest --passWithNoTests --runInBand --silent",
"test:unit": "npm test -- tests/unit",
"test:integration": "npm test -- tests/integration",
"test:watch": "npm test -- --watch",
"test:watch:unit": "npm run test:unit -- --watch",
"test:watch:integration": "npm run test:integration -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coverage:unit": "npm run test:unit -- --coverage",
"test:coverage:integration": "npm run test:integration -- --coverage"
},
"dependencies": {
"@hapi/boom": "9.1.4",
"@hapi/joi": "17.1.1",
"@types/bunyan": "1.8.8",
"@types/convict": "6.1.1",
"@types/express": "4.17.8",
"@types/express-bunyan-logger": "1.3.3",
"@types/hapi__joi": "17.1.8",
"@types/node": "15.6.1",
"@types/supertest": "2.0.11",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"body-parser": "1.19.1",
"bunyan": "2.0.5",
"class-transformer": "0.5.1",
"class-validator": "0.12.2",
"convict": "6.2.1",
"cors": "^2.8.5",
"eslint": "^7.25.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^25.0.1",
"express": "4.17.2",
"express-bunyan-logger": "1.3.3",
"helmet": "5.0.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "0.9.0",
"supertest": "6.1.6",
"swagger-jsdoc": "6.1.0",
"swagger-ui-express": "4.3.0",
"ts-node": "10.4.0",
"typedi": "0.8.0",
"typeorm": "^0.2.41",
"typescript": "4.5.4"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/jest": "27.4.0",
"jest": "26.6.3",
"nodemon": "2.0.15",
"ts-jest": "26.5.6"
}
}