-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "truepoint",
"version": "1.0.0",
"description": "tp workspace",
"main": "index.js",
"repository": "https://github.com/whileTrueDev/tp-mvp",
"author": "hwasurr <iamsupermazinga@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"client/web",
"client/admin",
"server",
"shared"
],
"nohoist": [
"**/@nestjs/",
"**/@nestjs/**",
"**/nest-access-control",
"**/@admin-bro/",
"**/@admin-bro/**"
]
},
"resolutions": {
"babel-loader": "8.1.0"
},
"devDependencies": {
"lerna": "^2.11.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5"
},
"scripts": {
"build": "lerna run build",
"lint:commit:fix": "yarn workspaces run lint:commit:fix",
"lint:fix": "yarn workspaces run lint:fix",
"lint": "yarn workspaces run lint"
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx)": [
"yarn lint:commit:fix",
"git add"
]
}
}