forked from Sage-Bionetworks/synapse-web-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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": "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.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-testing-library": "^5.10.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nx": "^16.0.3",
"rimraf": "^5.0.0",
"typescript": "5.0.4"
},
"npmClient": "pnpm",
"resolutions": {
"@types/react": "18.0.27",
"goober": "2.1.9",
"react-hot-toast": "2.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,yml,scss,css,md}": "prettier --write"
},
"pnpm": {
"patchedDependencies": {
"@jsdevtools/[email protected]": "patches/@[email protected]"
}
}
}