-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
62
63
64
{
"name": "mincu-monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "preconstruct build",
"build:debug-tools": "pnpm --filter mincu-debug-tools build",
"dev": "preconstruct dev",
"dev:debug-tools": "pnpm --filter mincu-debug-tools dev",
"preinstall": "npx only-allow pnpm",
"lint": "eslint -f unix \"packages/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prettier": "pretty-quick",
"release": "npm run build:debug-tools && npm run build && lerna publish --no-push --force-publish",
"test:example": "zx ./tests/run_example_scripts.mjs",
"watch": "preconstruct watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@lerna-lite/cli": "^2.1.0",
"@lerna-lite/publish": "^2.1.0",
"@preconstruct/cli": "^2.5.0",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"husky": "^8.0.1",
"kill-port": "1",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tslib": "^2.4.0",
"typescript": "^5.0.4"
},
"globals": {
"__DEV__": true,
"__TEST__": true,
"ts-jest": {
"useBabelrc": true
}
},
"preconstruct": {
"packages": [
"packages/*",
"packages/demos/*"
]
}
}