forked from Sage-Bionetworks/synapse-web-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
{
"name": "synapse-web-monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky",
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint --quiet",
"test": "nx run-many --target=test:ci",
"clean": "nx run-many --target=clean",
"type-check": "nx run-many --target=type-check"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"dotenv-cli": "^7.4.2",
"eslint": "^9.5.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"nx": "^18.0.8",
"rimraf": "^5.0.5",
"typescript": "5.5.2"
},
"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.2.64",
"goober": "2.1.9",
"react-hot-toast": "2.2.0",
"postcss": "^8.4.31"
}
}
}