-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "boilerplate-type-script",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --no-cache --detectOpenHandles",
"start": "nodemon --watch './' --exec \"ts-node ./src/server.ts\" -e ts",
"build": "tsc",
"prod": "yarn run build && copyfiles --flat ./logs/*.log ./dist/logs/ && copyfiles --flat ./env/*.env ./dist/env/ && node ./scripts/build.js && node ./dist/server.js"
},
"keywords": [],
"author": "Marcus Dantas",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "6.1.0",
"@types/express": "4.16.1",
"@types/jest": "24.0.9",
"@types/mongoose": "5.3.20",
"@types/morgan": "1.7.35",
"@types/multer": "^1.3.7",
"@types/supertest": "2.0.7",
"body-parser": "1.18.3",
"consign": "0.1.6",
"copyfiles": "^2.1.0",
"dotenv": "6.2.0",
"express": "4.16.4",
"jest": "24.1.0",
"moment": "2.24.0",
"mongoose": "5.4.17",
"mongoose-transactions-typescript": "^1.1.4",
"morgan": "1.9.1",
"multer": "1.4.1",
"nodemon": "1.18.10",
"reflect-metadata": "0.1.13",
"routing-controllers": "0.7.7",
"simple-node-logger": "^18.12.22",
"supertest": "3.4.2",
"ts-jest": "24.0.0",
"ts-node": "8.0.2",
"typegoose": "5.6.0",
"typescript": "3.3.3333"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}