-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 914 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
33
34
35
36
{
"name": "color-picks",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"eslint": "eslint ./packages --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "Humandetail",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vue/eslint-config-standard-with-typescript": "^8.0.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}