-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
{
"name": "muzart",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -F=editor build",
"build:github": "pnpm -F=editor build:github",
"bundle:visualize": "cd packages/editor && npx vite-bundle-visualizer",
"dev": "pnpm -F=editor dev",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:eslint": "eslint --cache --max-warnings=0",
"lint:eslint:fix": "eslint --max-warnings=0 --fix",
"lint:fix": "pnpm run lint:prettier:fix && pnpm run lint:eslint:fix",
"lint:prettier": "prettier --check \"**/*.{js,ts,tsx}\"",
"lint:prettier:fix": "prettier --write --check \"**/*.{js,ts,tsx}\"",
"preview": "pnpm -F=editor preview",
"tc": "pnpm typecheck",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"knip": "^5.30.6",
"pnpm": "^9.11.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}