This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.54 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
117
{
"name": "teaness",
"version": "4.3.2",
"main": "./es/index.js",
"module": "./es/index.js",
"authors": [
"tea <[email protected]> (https://github.com/MyCupOfTeaOo)"
],
"repository": {
"type": "git",
"url": "https://github.com/MyCupOfTeaOo/teaness"
},
"keywords": [
"react",
"component"
],
"description": "a react business component library,example: https://blissful-blackwell-0e6e7c.netlify.com/",
"scripts": {
"dev": "docz dev",
"build:doc": "rimraf .docz && rimraf docs && rimraf es && docz build",
"build": "father build",
"build:all": "father build && docz build",
"deploy": "npm run build && release-it --only-version && node ./scripts/deploy.js",
"lint:ts": "tslint \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"prettier": "prettier-eslint --write 'src/**/*'"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@types/classnames": "^2.2.9",
"@types/history": "^4.7.3",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@typescript-eslint/typescript-estree": "^2.10.0",
"docz": "^1.3.2",
"docz-iframe-playground": "^1.0.9",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^1.2.0",
"docz-theme-ztopia": "^0.1.3",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-unicorn": "^12.1.0",
"father": "^2.29.1",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^3.0.9",
"inquirer": "^7.0.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"react-docgen-props-table": "^1.0.3",
"release-it": "^13.7.0",
"signale": "^1.4.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"prettier-eslint --write",
"git add"
],
"**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js"
},
"files": [
"dist",
"es"
],
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@types/lodash-es": "^4.17.3",
"@types/numeral": "0.0.28",
"@types/qs": "^6.9.3",
"ag-grid-community": "^23.0.2",
"ag-grid-react": "^23.0.3",
"antd": "^4.1.0",
"async-validator": "^3.2.4",
"classnames": "^2.2.6",
"framer-motion": "^1.11.0",
"get-pkg-repo": "4.1.1",
"hosted-git-info": "^2.1.4",
"lodash-es": "^4.17.15",
"mobx": "^5.14.2",
"mobx-react": "^6.1.4",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"qs": "^6.9.4",
"querystring": "^0.2.0",
"rc-queue-anim": "^1.8.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3"
}
}