forked from umijs/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.55 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
{
"name": "@umijs/fabric",
"version": "2.10.2",
"description": "A collection of configuration files containing prettier, eslint, stylelint",
"keywords": [
"eslint",
"prettier",
"antd",
"ant",
"design",
"pro"
],
"homepage": "https://github.com/umijs/fabric#readme",
"bugs": {
"url": "https://github.com/umijs/fabric/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umijs/fabric"
},
"license": "ISC",
"author": "qixian.cs@outlook.com",
"main": "dist/index.js",
"bin": {
"fabric": "./cli.js"
},
"files": [
"dist",
"cli.js"
],
"scripts": {
"build": "tsc --build tsconfig.json && npm run copy-files",
"copy-files": "copyfiles -u 1 src/.prettierignore ./dist/",
"deps": "yarn upgrade-interactive --latest",
"lib": "cross-env TIMING=1 eslint lib",
"lint": "npm run build && cd tsExample && npm run lint",
"lint-js": "npm run build && cd jsExample && npm run lint",
"prepublishOnly": "npm run build && npm test && np --no-cleanup --yolo --no-publish --any-branch",
"prettier": "prettier -c --write \"**/*\"",
"test": "npm run testTS && npm run testJS",
"testJS": "npm run build && cd jsExample && npm run lint",
"testTS": "npm run build && cd tsExample && npm run lint"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.9.0",
"chalk": "^4.1.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^20.0.0",
"fast-glob": "^3.2.4",
"os-locale": "^5.0.0",
"prettier": "^2.3.2",
"prettier-plugin-two-style-order": "^1.0.0",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"np": "^6.2.5",
"rimraf": "^3.0.2"
}
}