-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "coding",
"version": "1.0.0",
"description": "Implement collaborative editing, data playback, AI code assistance and editor plug-ins based on codemirror6",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint-staged": "lint-staged",
"lint": "pnpm run lint:es && pnpm run lint:prettier",
"lint:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache",
"lint:prettier": "prettier --list-different \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"fix": "pnpm run fix:es && pnpm run fix:prettier ",
"fix:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache --fix",
"fix:prettier": "prettier --write \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"zustand": "^4.5.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"devDependencies": {
"@tsconfig/create-react-app": "^2.0.5",
"@tsconfig/recommended": "^1.0.7",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"vite": "^5.4.2"
}
}