forked from bytedance/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.09 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": "byte-guide",
"version": "1.0.6",
"description": "New feature guide",
"keywords": [
"guide",
"react"
],
"homepage": "https://github.com/bytedance/guide",
"repository": {
"type": "git",
"url": "https://github.com/bytedance/guide"
},
"scripts": {
"start": "dumi dev",
"lint": "eslint --ext .jsx,.js src",
"lint:fix": "yarn run lint -- --fix",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && bash ./publish.sh",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.min.js",
"typings": "dist/src/index.d.ts",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@umijs/test": "^3.0.5",
"dumi": "^1.0.10",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"validate-commit-msg": "^2.14.0",
"yorkie": "^2.0.0"
}
}