-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 925 Bytes
/
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
{
"name": "jt-icons",
"private": true,
"scripts": {
"dev": " run-p dev:server dev:upload",
"dev:server": "cd packages/icon-server && pnpm dev",
"dev:upload": "cd packages/icon-upload && pnpm dev",
"lint": "eslint --fix packages/**/src/**/*.{ts,js,vue}",
"pm2":"pm2 start --watch --name jt-icons npm -- run dev",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "latest",
"typescript": "^4.7.4",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"packages/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
}
}