-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
76 lines (76 loc) · 1.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "f2e-spec",
"private": true,
"description": "阿里巴巴前端规约及配套工具",
"homepage": "https://github.com/alibaba/f2e-spec#readme",
"bugs": {
"url": "https://github.com/alibaba/f2e-spec/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alibaba/f2e-spec.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "rive build --no-lib",
"deploy": "gh-pages -d build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"start": "rive start",
"test": "rive test"
},
"commitlint": {
"extends": [
"ali"
]
},
"lint-staged": {
"*.{cjs,cts,js,jsx,mjs,mts,ts,tsx,vue}": "eslint"
},
"prettier": "prettier-config-ali",
"eslintConfig": {
"extends": [
"ali/typescript/node",
"plugin:prettier/recommended"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@mdx-js/react": "^3.1.0",
"@types/node": "^20.16.14",
"commitlint-config-ali": "link:packages/commitlint-config-ali",
"eslint": "^8.57.1",
"eslint-config-ali": "link:packages/eslint-config-ali",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint": "~0.33.0",
"prettier": "^3.3.3",
"prettier-config-ali": "link:packages/prettier-config-ali",
"react": "^18.3.1",
"react-doc-ui": "^2.2.6",
"react-dom": "^18.3.1",
"rive": "^2.0.33",
"typescript": "^5.6.3"
},
"rive": {
"doc": {
"title": "阿里巴巴前端规约",
"basename": "/f2e-spec/",
"root": "docs",
"languages": [
{
"code": "en",
"name": "🇬🇧 English"
},
{
"code": "zh",
"name": "🇨🇳 中文"
}
]
}
}
}