-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "sailkit",
"version": "0.0.1-beta.8",
"license": "AGPL",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "pnpm -r --filter=./packages/* run build",
"release": "bumpp package.json packages/**/package.json",
"format": "prettier --write \"**/*.{ts,tsx}\""
},
"author": "fantasticit",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"sass": "^1.72.0",
"vite": "^5.2.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "^3.8.1"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18.14.1"
}
}