-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "lerna run dev --parallel --stream",
"dev:ssl": "lerna run dev:ssl --parallel --stream",
"build": "lerna run build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier \"packages/*/src/**/*\"",
"test": "lerna run test",
"clean": "rimraf --glob 'packages/*/dist/*' 'sandbox/*'",
"postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
"postversion:check": "yarn lint && yarn test",
"postversion:commit": "node scripts/postversion-commit.js",
"postversion:push": "git push && git push --tags",
"prepublish": "yarn lint && yarn test",
"prepack": "yarn clean && yarn build"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__eslintrc": "^2.1.2",
"@types/meow": "^6.0.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.15.0",
"lerna": "^8.2.1",
"meow": "^13.2.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "<5.6.0",
"typescript-eslint": "^8.28.0",
"vite": "^6.2.4"
}
}