-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.28 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
{
"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 '**/*.{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": ">=8",
"npm": "<0",
"node": ">=18"
},
"dependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^18.11.9",
"@changesets/types":"6.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"
}
}