forked from Sage-Bionetworks/synapse-web-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "synapse-web-monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"prepare": "husky install",
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint",
"test": "nx run-many --target=test:ci",
"clean": "nx run-many --target=clean",
"type-check": "nx run-many --target=type-check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nx": "^16.5.0",
"rimraf": "^5.0.1",
"typescript": "5.1.6"
},
"npmClient": "pnpm",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,yml,scss,css,md}": "prettier --write"
},
"pnpm": {
"patchedDependencies": {
"@jsdevtools/[email protected]": "patches/@[email protected]"
},
"overrides": {
"word-wrap": "^1.2.4",
"semver": "^7.5.4",
"@types/react": "18.0.27",
"goober": "2.1.9",
"react-hot-toast": "2.2.0"
}
}
}