-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "githubRank",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:client": "cd apps/client && pnpm dev",
"dev:server": "cd apps/server && pnpm start:dev",
"dev": "pnpm run -r --parallel dev",
"build:client": "cd apps/client && pnpm build",
"build:client:ssr": "cd apps/client && pnpm build:ssr",
"build:server": "cd apps/server && pnpm build",
"build": "pnpm run build:client && pnpm run build:client:ssr && pnpm run build:server",
"start": "pnpm run build && cd apps/server && pnpm start",
"commit": "cz",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.0.0"
}
}