forked from paljs/prisma-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "root",
"private": true,
"scripts": {
"build": "pnpm run --filter @paljs/utils --filter @paljs/types --filter @paljs/schema --filter @paljs/plugins --filter @paljs/nexus --filter @paljs/display --filter @paljs/generator --filter @paljs/create --filter @paljs/cli --filter @paljs/admin build",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"test": "jest --coverage",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-runner-eslint": "^2.0.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.2.0",
"prettier": "2.8.4",
"prettier-plugin-prisma": "^4.10.0",
"ts-jest": "^29.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,prisma,graphql,yml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"jest --findRelatedTests --passWithNoTests"
]
},
"pnpm": {
"overrides": {
"eslint-plugin-unicorn": "^41.0.0"
}
}
}