-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 2.14 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
{
"name": "uigradients",
"version": "1.0.0",
"description": "a uigradients.com generator react & styled-components.",
"source": "src/index.js",
"main": "dist/uigradients.js",
"module": "dist/uigradients.mjs",
"unpkg": "dist/uigradients.umd.js",
"scripts": {
"build": "microbundle build --jsx React.createElement --external react",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"storybook": "start-storybook -p 6006 --docs",
"build-storybook": "build-storybook --docs -s .storybook/static",
"deploy-storybook": "storybook-to-ghpages"
},
"bugs": {
"url": "https://garetmckinley.github.io/uigradients/issues"
},
"homepage": "https://garetmckinley.github.io/uigradients",
"repository": {
"type": "git",
"url": "git+https://github.com/garetmckinley/uigradients.git"
},
"author": "Garet McKinley",
"license": "MIT",
"peerDependencies": {
"react": ">=16.0.0",
"styled-components": ">=2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-docs": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/react": "^5.2.5",
"@storybook/storybook-deployer": "^2.8.1",
"@storybook/theming": "^5.2.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jscodeshift": "^0.6.4",
"microbundle": "^0.12.0-next.6",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"styled-components": "^4.4.0"
},
"dependencies": {
"memoize-one": "^5.1.1"
}
}