-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 KB
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
{
"name": "nestjs-app-name",
"version": "1.0.0",
"description": "description",
"author": "",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && tsc",
"start:prod": "node dist/main.js",
"test": "jest"
},
"dependencies": {
"@nestjs/common": "^5.0.0-beta.6",
"@nestjs/core": "^5.0.0-beta.6",
"@nestjs/swagger": "^2.0.2",
"@nestjs/typeorm": "^2.0.0",
"fastify-formbody": "^2.0.0",
"mysql": "^2.15.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.1.0",
"typeorm": "^0.2.5",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/jest": "^22.2.3",
"@types/node": "^9.3.0",
"jest": "^22.4.4",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"ts-jest": "^22.4.6",
"ts-loader": "^4.1.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "5.3.2"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}