-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 KB
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
{
"type": "module",
"scripts": {
"start": "run-p --silent start:*",
"start:backend": "npm start --prefix packages/test-app-backend",
"start:frontend": "npm start --prefix packages/test-app-frontend",
"test": "run-p --silent test:*",
"test:components": "npm test --prefix packages/changed-elements-react",
"cover": "run-p --silent cover:*",
"cover:components": "npm run test:cover --prefix packages/changed-elements-react",
"lint": "eslint ./packages/**/src/**/*.{ts,tsx}",
"typecheck": "run-p --silent typecheck:*",
"typecheck:components": "npm run typecheck --prefix packages/changed-elements-react",
"typecheck:backend": "npm run typecheck --prefix packages/test-app-backend",
"typecheck:frontend": "npm run typecheck --prefix packages/test-app-frontend",
"check": "changeset status"
},
"engines": {
"pnpm": ">=10",
"npm": "<0",
"node": ">=22"
},
"dependencies": {
"@changesets/cli": "^2.27.11",
"@changesets/types": "6.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "~5.5.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@bentley/imodeljs-native",
"@parcel/watcher",
"@swc/core",
"esbuild",
"protobufjs"
],
"overrides": {
"happy-dom@<=20.8.9": ">=20.8.9",
"@remix-run/router@<=1.23.1": ">=1.23.2",
"tmp@<0.2.6": ">=0.2.6"
}
},
"devDependencies": {
"eslint-config-prettier": "^10.1.8"
}
}