This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.76 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
{
"name": "@ahaui/react",
"version": "2.0.3",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es/*.{js,map}",
"lib/*.{js,map}",
"CHANGELOG.md"
],
"scripts": {
"build": "node scripts/build",
"prepublishOnly": "yarn build",
"start": "node scripts/start",
"format": "eslint --ext js src --fix",
"lint": "eslint --ext js src",
"prepack": "clean-package -rm devDependencies scripts",
"postpack": "clean-package restore"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@restart/hooks": "0.3.25",
"@wojtekmaj/predict-input-value": "1.0.0",
"@wojtekmaj/react-daterange-picker": "2.5.0",
"classnames": "2.2.6",
"dom-helpers": "5.1.0",
"popper.js": "1.15.0",
"prop-types": "15.7.2",
"prop-types-extra": "1.1.0",
"rc-slider": "8.7.1",
"react-date-picker": "7.10.0",
"react-slick": "0.27.13",
"react-split-pane": "0.1.92",
"react-tagsinput": "3.19.0",
"react-textarea-autosize": "7.1.2",
"react-time-picker": "3.9.0",
"react-toastify": "7.0.4",
"react-transition-group": "4.0.0",
"uncontrollable": "7.1.1",
"warning": "4.0.3"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-syntax-class-properties": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-optional-chaining": "7.8.3",
"autoprefixer": "9.6.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.1.0",
"babel-preset-react-app": "9.1.2",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"clean-package": "1.0.1",
"dotenv": "8.2.0",
"eslint": "5.12.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-react-app": "3.0.6",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.12.3",
"fs-extra": "7.0.1",
"husky": ">=4",
"lint-staged": "10.5.2",
"react": "16.9.0",
"react-dev-utils": "9.0.4",
"react-dom": "16.9.0",
"webpack": "4.40.2",
"webpack-node-externals": "1.7.2"
},
"peerDependencies": {
"@ahaui/css": "^2.0.4",
"react": "^16.9.0 || 17.x",
"react-dom": "^16.9.0 || 17.x"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"author": "Got It, Inc.",
"homepage": "https://github.com/gotitinc/aha-react#readme",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gotitinc/aha-react.git"
},
"description": "Aha Design System - React",
"directories": {
"lib": "lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}