-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint --ext .vue,.js,.jsx,.ts,.tsx ./ --max-warnings 0",
"lint:fix": "eslint --ext .vue,.js,jsx,.ts,.tsx ./ --max-warnings 0 --fix",
"stylelint": "stylelint **/*.{html,vue,sass,less} --allow-empty-input",
"stylelint:fix": "stylelint --fix **/*.{html,vue,vss,sass,less} --allow-empty-input",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.12",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"esno": "^0.14.1",
"execa": "^6.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"prettier": "^2.4.1",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-less": "^1.0.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"npm run lint:fix",
"git add ."
]
},
"description": "<p style=\"display:flex; justify-content: center\">",
"main": ".prettierrc.js",
"repository": {
"type": "git",
"url": "https://github.com/candy-Tong/my-vite"
},
"keywords": [],
"author": "",
"license": "ISC",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "8"
}
}
}
}