forked from segunadebayo/chakra-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.65 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "chakra-ui",
"version": "0.3.9",
"description": "Responsive and accessible React UI components built with React and Emotion",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:cjs && npm run build:esm && npm run build:copy-types",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel ./src --out-dir ./dist --ignore \"**/examples.js\"",
"build:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel ./src --out-dir ./dist/esm --ignore \"**/examples.js\"",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --out-dir ./dist/es --ignore \"**/examples.js\"",
"build:umd": "cross-env NODE_ENV=production-umd rollup -c",
"build:copy-types": "node ./scripts/copy-files.js",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"lint": "eslint src",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier \"**/*.+(js|jsx|ts|tsx|d.ts|md|mdx)\"",
"format": "npm run prettier -- --write",
"validate": "npm run lint && npm run prettier -- --list-different && npm run tslint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-watch": "nodemon -w src -x 'rm .babelrc &> /dev/null; npm run build'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.ts": [
"tslint -c tslint.json"
],
"**/*.+(js|jsx|ts|tsx|d.ts|md|mdx)": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@reach/alert": "0.1.5",
"@reach/alert-dialog": "0.2.9",
"@reach/auto-id": "0.2.0",
"@reach/dialog": "0.2.9",
"@reach/portal": "0.2.1",
"@styled-system/css": "5.0.13",
"@styled-system/should-forward-prop": "5.0.12",
"@styled-system/theme-get": "5.0.5",
"@types/styled-system": "5.0.1",
"color": "3.1.2",
"react-animate-height": "2.0.9",
"react-focus-lock": "1.19.1",
"react-popper": "1.3.3",
"react-spring": "8.0.23",
"styled-system": "5.0.5",
"toasted-notes": "2.1.6",
"use-dark-mode": "2.3.1"
},
"peerDependencies": {
"@emotion/core": "10.x",
"@emotion/styled": "10.x",
"emotion-theming": "10.x",
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.11",
"@storybook/addon-actions": "^5.1.3",
"@storybook/addon-knobs": "5.1.3",
"@storybook/addon-links": "^5.1.3",
"@storybook/addons": "^5.1.3",
"@storybook/react": "^5.1.3",
"@testing-library/react": "8.0.7",
"@testing-library/react-hooks": "1.1.0",
"babel-eslint": "10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "10.0.9",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-react-remove-properties": "0.3.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"cross-env": "5.2.0",
"dtslint": "0.9.0",
"emotion-theming": "10.0.10",
"eslint": "5.16.0",
"eslint-config-prettier": "6.0.0",
"eslint-config-react-app": "4.0.1",
"eslint-plugin-flowtype": "3.9.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "1.6.0",
"fs-extra": "8.1.0",
"glob": "7.1.4",
"husky": "3.0.2",
"jest": "24.8.0",
"lint-staged": "9.2.1",
"nodemon": "1.19.1",
"path": "0.12.7",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"rimraf": "2.6.3",
"rollup": "1.18.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.1",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.3"
},
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/segunadebayo/chakra-ui",
"repository": "https://github.com/segunadebayo/chakra-ui",
"keywords": [
"react",
"ui",
"design-system",
"react-components",
"uikit",
"accessible",
"components",
"emotion",
"library",
"design-system"
]
}