This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
generated from arvinxx/umi-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.81 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": "umi-plugin-figma",
"version": "1.0.0",
"main": "lib/index.js",
"description": "a umi plugin to develop figma plugin",
"authors": {
"name": "Arvin Xu",
"email": "arvinx@foxmail.com"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/arvinxx/umi-plugin-figma#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arvinxx/umi-plugin-figma.git"
},
"scripts": {
"start": "npm run build && npm run example:dev",
"dev": "father-build -w",
"build": "father-build",
"---------": "",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot",
"--------- ": "",
"example:dev": "cross-env APP_ROOT=example umi dev",
"example:build": "cross-env APP_ROOT=example umi build",
"--------- ": "",
"docs": "cross-env yarn api:build && APP_ROOT=document umi dev --dumi",
"docs:build": "cross-env yarn api:build && APP_ROOT=document umi build --dumi",
"--------- ": "",
"api:build": "yarn api:clean && typedoc",
"api:clean": "rm -rf document/docs/api",
"--------- ": "",
"changelog": "conventional-changelog -p gitmoji-config -i CHANGELOG.md -s -r 0",
"release": "semantic-release",
"--------- ": "",
"lint": "yarn lint-eslint && yarn tsc",
"tsc": "tsc -p tsconfig-check.json",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty src",
"lint-staged": "lint-staged",
"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 --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"clean": "rm -rf es lib example/dist document/dist example/.umi*/ document/.umi*/ coverage .eslintcache"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint -c .eslintrc.js"
],
"*.{css,less,scss}": [
"stylelint --fix"
],
"*.{ts,tsx,json,js,css,less,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"@ant-design/pro-skeleton": "^1.0.0-beta.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^5.0.0",
"@types/fs-extra": "^9.0.6",
"@types/generate-json-webpack-plugin": "^0.3.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@umijs/fabric": "^2.5.2",
"@umijs/preset-dumi": "^1.1.2",
"@umijs/test": "^3.3.6",
"@umijs/test-utils": "^3.3.6",
"antd": "^4.10.3",
"body-parser": "^1.18.2",
"commitlint": "^12.0.1",
"commitlint-config-gitmoji": "^2.1.2",
"concurrently": "^6.0.0",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-gitmoji-config": "^1.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.2.1",
"express": "^4.15.3",
"father-build": "^1.17.2",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"puppeteer": "^1.20.0",
"query-string": "^6.13.8",
"react": "^17.0.1",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.9.0",
"semantic-release": "^17.3.3",
"test-umi-plugin": "^0.1.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.16",
"typedoc-plugin-markdown": "^3.4.0",
"typescript": "^4.2.3",
"umi": "^3.3.6"
},
"files": [
"lib"
],
"dependencies": {
"@figma/plugin-typings": "^1.19.2",
"fs-extra": "^9.0.1",
"generate-json-webpack-plugin": "^1.0.0"
}
}