-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
55
56
57
58
59
60
61
{
"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 --coverage",
"clean": "nx run-many --target=clean",
"type-check": "nx run-many --target=type-check"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"dotenv-cli": "^7.4.4",
"eslint": "^9.15.0",
"eslint-plugin-barrel-files": "^2.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-testing-library": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nx": "19.7.3",
"rimraf": "^5.0.5",
"typescript": "5.5.2",
"typescript-eslint": "^8.16.0"
},
"npmClient": "pnpm",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{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.3.12",
"@types/react-dom": "18.3.1",
"goober": "2.1.9",
"react-hot-toast": "2.2.0",
"postcss": "^8.4.31"
}
}
}