-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "@awawa/conventions",
"version": "0.0.1",
"description": "前端规范",
"private": true,
"workspace": true,
"workspaces": [
"./packages/eslint-plugin",
"./packages/configurations"
],
"keywords": [],
"main": "index.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"checkUnTranslateRules": "node ./scripts/docs.js -c true",
"reWriteEslintRules": "node ./scripts/reWriteEslintRules.js",
"commit": "git add . && git-cz && git push",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranwawa/conventions.git"
},
"bugs": {
"url": "https://github.com/ranwawa/conventions/issues"
},
"homepage": "https://github.com/ranwawa/conventions#readme",
"author": "ranwawa <[email protected]> (https://github.com/ranwawa)",
"license": "ISC",
"devDependencies": {
"@awawa/configurations": "workspace:*",
"@awawa/eslint-plugin": "workspace:*",
"@commitlint/cli": "latest",
"conventional-changelog-conventionalcommits": "latest",
"eslint-plugin-markdown": "^3.0.0",
"git-cz": "latest",
"husky": "^8.0.3",
"lerna": "^7.3.0",
"lint-staged": "^13.2.1",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"meow": "^12.1.1",
"vitepress": "1.0.0-rc.24",
"vue": "^3.2.47"
},
"dependencies": {
"@types/react": "^18.2.20",
"chalk": "^5.3.0",
"clipboardy": "^3.0.0",
"inquirer": "^9.2.11",
"jest": "^29.5.0",
"open": "^9.1.0",
"react": "^18.2.0",
"typescript": "^5.1.6"
}
}