forked from w3tecch/express-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.4 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "express-typescript-boilerplate",
"version": "3.0.1",
"description": "A delightful way to building a Node.js RESTful API Services with beautiful code written in TypeScript",
"main": "src/app.ts",
"scripts": {
"start": "nps",
"test": "npm start test",
"build": "npm start build",
"presetup": "yarn install",
"setup": "npm start config && npm start setup.script"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "git+ssh://[email protected]/w3tec/express-typescript-boilerplate.git",
"keywords": [
"NodeJS",
"TypeScript",
"express",
"boilerplate",
"skeleton",
"starter-kit",
"w3tec.ch"
],
"homepage": "https://github.com/w3tec/express-typescript-boilerplate#readme",
"author": "w3tec.ch <[email protected]>",
"contributors": [
{
"name": "David Weber",
"email": "[email protected]",
"url": "https://github.com/dweber019"
},
{
"name": "Gery Hirschfeld",
"email": "[email protected]",
"url": "https://github.com/hirsch88"
}
],
"dependencies": {
"@types/bluebird": "^3.5.18",
"@types/body-parser": "^1.16.7",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.11.0",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.39",
"@types/faker": "^4.1.2",
"@types/helmet": "^0.0.37",
"@types/lodash": "^4.14.80",
"@types/morgan": "^1.7.35",
"@types/reflect-metadata": "0.0.5",
"@types/request": "^2.0.8",
"@types/serve-favicon": "^2.2.29",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.7",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"class-validator": "^0.7.3",
"commander": "^2.11.0",
"compression": "^1.7.1",
"copyfiles": "^1.2.0",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"dotenv": "^4.0.0",
"event-dispatch": "^0.4.1",
"express": "^4.16.2",
"express-basic-auth": "^1.1.3",
"express-graphql": "^0.6.11",
"express-status-monitor": "^1.0.1",
"faker": "^4.1.0",
"figlet": "^1.2.0",
"glob": "^7.1.2",
"graphql": "^0.11.7",
"helmet": "^3.9.0",
"jsonfile": "^4.0.0",
"lodash": "^4.17.4",
"microframework-w3tec": "^0.6.3",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"nodemon": "^1.12.1",
"nps": "^5.7.1",
"nps-utils": "^1.5.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.10",
"request": "^2.83.0",
"routing-controllers": "^0.7.6",
"serve-favicon": "^2.4.5",
"supertest": "^3.0.0",
"swagger-ui-express": "^2.0.10",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typedi": "^0.5.2",
"typeorm": "^0.1.3",
"typeorm-typedi-extensions": "^0.1.1",
"typescript": "2.6.2",
"uuid": "^3.1.0",
"winston": "^2.4.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/test/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/unit/lib/setup.ts"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/nock": "^8.2.1",
"cross-env": "^5.1.1",
"jest": "^21.2.1",
"mock-express-request": "^0.2.0",
"mock-express-response": "^0.2.1",
"nock": "^9.1.4",
"sqlite3": "^3.1.13",
"ts-jest": "^21.1.4"
}
}