-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-hook-tracer-root",
"author": "Martijn Schrage (https://www.oblomov.com)",
"version": "1.0.0",
"private": true,
"description": "Root package for react-hook-tracer",
"license": "MIT",
"workspaces": [
"packages/react-hook-tracer",
"apps/react-hook-tracer-demo"
],
"scripts": {
"start": "yarn start-app",
"build": "yarn build-lib && yarn type-check-app",
"clean": "yarn workspaces foreach --all run clean",
"lint-check": "yarn workspaces foreach --all run lint-check",
"lint-fix": "yarn workspaces foreach --all run lint-check",
"test": "yarn test-lib && yarn test-app",
"prettier-check": "prettier -l '**/*.{ts,tsx,json,md,js,scss,yml}'",
"prettier-fix": "yarn prettier-check --write",
"build-app": "yarn workspace react-hook-tracer-demo build",
"lint-check-app": "yarn workspace react-hook-tracer-demo lint-check",
"lint-fix-app": "yarn workspace react-hook-tracer-demo lint-fix",
"start-app": "yarn workspace react-hook-tracer-demo start",
"test-app": "yarn workspace react-hook-tracer-demo test",
"build-lib": "yarn workspace react-hook-tracer build",
"build-watch-lib": "yarn workspace react-hook-tracer build-watch",
"clean-lib": "yarn workspace react-hook-tracer clean",
"lint-check-lib": "yarn workspace react-hook-tracer lint-check",
"lint-fix-lib": "yarn workspace react-hook-tracer lint-fix",
"login": "yarn workspace react-hook-tracer npm login --publish",
"pack-lib": "yarn pre-pack-publish && yarn workspace react-hook-tracer pack -o 'dist/%s@%v.tgz'",
"pack-lib-no-test": "yarn clean && yarn build-lib && yarn workspace react-hook-tracer pack -o 'dist/%s@%v.tgz'",
"pre-pack-publish": "yarn prettier-check && yarn clean && yarn build && yarn lint-check",
"publish-lib": "yarn pre-pack-publish && yarn workspace react-hook-tracer npm publish",
"tag-release": "bash-scripts/tag-release.sh",
"test-lib": "yarn workspace react-hook-tracer test",
"test-watch-lib": "yarn workspace react-hook-tracer test-watch",
"type-check-app": "yarn workspace react-hook-tracer-demo type-check",
"type-check-watch-app": "yarn workspace react-hook-tracer-demo type-check-watch",
"type-check-lib": "yarn workspace react-hook-tracer type-check",
"type-check-watch-lib": "yarn workspace react-hook-tracer type-check-watch"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@rollup/plugin-typescript": "^12.1.2",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"packageManager": "yarn@1.22.22"
}