forked from tfabritius/pr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 853 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
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
{
"name": "pr",
"version": "0.0.1",
"private": true,
"scripts": {
"api": "yarn workspace pr-api",
"web": "yarn workspace pr-web",
"lint": "eslint \"*/{src,test}/**/*.{ts,tsx,js,jsx,vue}\" --max-warnings=0",
"lintfix": "eslint \"*/{src,test}/**/*.{ts,tsx,js,jsx,vue}\" --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"workspaces": {
"packages": [
"api",
"web"
],
"nohoist": [
"**/@vue/cli-service",
"**/typeorm",
"**/@nestjs/",
"**/@nestjs/**",
"**/graphql"
]
},
"lint-staged": {
"*.{ts,js,vue}": "yarn lint"
}
}