-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.55 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
{
"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/saved-views-react",
"cover": "run-p --silent cover:*",
"cover:components": "npm run test:cover --prefix packages/saved-views-react",
"lint": "eslint '**/*.{ts,tsx}'",
"typecheck": "run-p --silent typecheck:*",
"typecheck:components": "npm run typecheck --prefix packages/saved-views-react",
"typecheck:client": "npm run typecheck --prefix packages/saved-views-client",
"typecheck:backend": "npm run typecheck --prefix packages/test-app-backend",
"typecheck:frontend": "npm run typecheck --prefix packages/test-app-frontend",
"release": "tsx scripts/release.ts",
"post-release": "tsx scripts/release.ts -- post-release"
},
"engines": {
"pnpm": ">=8",
"npm": "<0",
"node": ">=18"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@inquirer/prompts": "^5.0.5",
"@types/node": "^18.11.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^10.4.1",
"npm-run-all": "^4.1.5",
"semver": "^7.6.2",
"tsx": "^4.15.4",
"typescript": "^5.5.4"
}
}