forked from golevelup/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.46 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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@nestjs/common": "^5.7.0",
"@nestjs/core": "^5.7.0",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@nestjs/testing": "^5.7.0",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.18",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lerna": "^3.10.2",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"scripts": {
"lerna:publish": "lerna run build && yarn test && lerna publish",
"lerna:prerelease": "lerna run build && yarn test && lerna publish prerelease --preid rc",
"build": "lerna run build",
"clean": "rimraf packages/**/lib",
"test": "jest",
"travis": "yarn install && yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn run prettier --write",
"git add"
],
"*.md": [
"yarn run prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"projects": [
"<rootDir>/packages/*"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.spec.json"
}
}
},
"version": "0.0.0"
}