-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build:types": "lerna run --scope @my-emotions/types build",
"postinstall": "yarn run bootstrap && yarn run build:types",
"build": "lerna run build",
"clean": "lerna clean"
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
},
"dependencies": {
"@nestjs/graphql": "^7.6.0",
"class-validator": "^0.12.2",
"typeorm": "^0.2.25"
}
}