forked from arvinxx/power-yuque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.65 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "power-yuque",
"version": "0.4.2",
"description": "a chrome plugin to enhance yuque",
"private": true,
"author": "Arvin Xu([email protected])",
"license": "MIT",
"homepage": "https://github.com/arvinxx/power-yuque#readme",
"repository": {
"type": "git",
"url": "https://github.com/arvinxx/power-yuque.git"
},
"bugs": {
"url": "https://github.com/arvinxx/power-yuque/issues"
},
"scripts": {
"start": "umi dev",
"build": "umi build",
"zip": "yarn build && yarn zip:only",
"zip:only": "ts-node ./scripts/zip",
"--------- ": "",
"test": "umi test",
"test:update": "UPDATE=1 umi-test --update-snapshot",
"test:coverage": "umi-test --coverage",
"--------- ": "",
"changelog": "conventional-changelog -p gitmoji-config -i CHANGELOG.md -s -r 0",
"release": "semantic-release",
"--------- ": "",
"clean": "rm -rf es lib dist build coverage e2e/dist packages/.umi .eslintcache",
"postinstall": "umi generate tmp",
"lint": "npm run lint-eslint",
"tsc": "tsc -p tsconfig-check.json",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty src",
"lint-staged": "lint-staged",
"lint-styles": "stylelint",
"lint-staged:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ",
"prettier": "prettier -c --write \"**/**\""
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint -c .eslintrc.js"
],
"*.{css,less,scss}": [
"stylelint --fix"
],
"*.{ts,tsx,json,js,css,less,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@ant-design/charts": "^1.0.19",
"@ant-design/pro-layout": "^6.15.0",
"@ant-design/pro-list": "^1.5.5",
"@umijs/preset-react": "^1.8.0",
"@yuque/sdk": "^1.1.1",
"ahooks": "^2.9.6",
"antd": "^4.13.1",
"classnames": "^2.2.6",
"current-device": "^0.10.2",
"dayjs": "^1.10.4",
"jquery": "^3.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.2.1",
"react-intl": "^5.13.2",
"react-spring": "^8.0.27",
"rxjs": "^6.6.6",
"rxjs-hooks": "^0.6.2",
"umi": "^3.3.9",
"umi-plugin-extensions": "^0.4.0",
"umi-plugin-tailwindcss": "^3.0.0",
"umi-request": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@types/archiver": "^5.1.0",
"@types/chrome": "^0.0.133",
"@types/classnames": "^2.2.11",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^26.0.14",
"@types/jquery": "^3.5.5",
"@types/react-test-renderer": "^17.0.1",
"@types/webpack": "^4.41.22",
"@umijs/fabric": "^2.5.7",
"@umijs/preset-ui": "^2.2.9",
"@umijs/test": "^3.3.9",
"archiver": "^5.3.0",
"babel-jest": "^26.6.0",
"commitlint-config-gitmoji": "^2.2.3",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-gitmoji-config": "^1.4.2",
"cross-env": "^7.0.0",
"eslint": "^7.21.0",
"eslint-config-umi": "^1.6.0",
"fs-extra": "^9.1.0",
"husky": "^4.3.8",
"jest": "26.6.3",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"semantic-release": "^17.4.0",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}