-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
129 lines (129 loc) · 3.69 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
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fave-ui",
"version": "0.1.30",
"description": "React UI KiT by Fave",
"author": "Fave",
"license": "MIT",
"keywords": [
"fave",
"ui",
"react"
],
"repository": "kfit-dev/ui-components",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.min.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12",
"npm": ">=5"
},
"scripts": {
"test": "yarn lint && ./node_modules/.bin/jest --passWithNoTests",
"test:watch": "yarn run test -- --watch",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --cache",
"prepublishOnly": "rm -rf dist && yarn build",
"dev": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build",
"build": "rollup -c",
"clean": "git clean -Xdf",
"storybook": "start-storybook -p 6006",
"create-component": "node ./tools/create-component.js",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/runtime": "^7.1.2",
"@types/classnames": "^2.3.1",
"@types/react": "^16.9.5",
"antd": "4.20.0",
"array-move": "^4.0.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"react-sortable-hoc": "^2.0.0",
"ui-box": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/addon-options": "^5.3.21",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.0.21",
"@storybook/react": "^6.4.14",
"@storybook/theming": "^6.0.21",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.1.0",
"dashify": "^2.0.0",
"eslint": "6.2.2",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-storybook": "^0.5.6",
"fave-tailwindcss-presets": "^0.1.1",
"file-loader": "^6.0.0",
"fs-extra": "^7.0.0",
"husky": "^7.0.0",
"jest": "^27.5.0",
"lint-staged": "^10.0.1",
"phosphor-react": "^1.4.0",
"postcss": "^8.4.5",
"postcss-import": "^12.0.1",
"prettier": "^1.14.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.28.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.31.1",
"tailwindcss": "^3.0.16",
"typescript": "^4.5.5",
"url-loader": "^1.1.2",
"webpack": "^4.43.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"yarn lint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}