-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
84 lines (84 loc) · 2.71 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
{
"name": "hedron",
"version": "1.0.1",
"description": "A no-frills flexbox grid system for React.",
"main": "dist/hedron.js",
"types": "dist/index.d.ts",
"author": {
"name": "Garet McKinley",
"email": "self@garet.io",
"url": "https://github.com/garetmckinley"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:dist",
"build:clean": "rimraf dist/ lib/",
"build:lib": "babel src --out-dir lib",
"build:dist": "rollup -c && rollup -c --environment PRODUCTION",
"clean": "rm -rf dist && rm -rf lib",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "npm run build"
},
"bugs": {
"url": "https://github.com/garetmckinley/hedron/issues"
},
"homepage": "https://github.com/garetmckinley/hedron",
"repository": {
"type": "git",
"url": "git+https://github.com/garetmckinley/hedron.git"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-info": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addon-notes": "^4.1.11",
"@storybook/addon-options": "^4.1.11",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"all-contributors-cli": "^6.1.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^10.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-styled-components": "^1.6.3",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.26.0",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^3.0.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-inject": "^2.2.0",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"styled-components": "^4.0.0-beta.0-2"
},
"dependencies": {
"prop-types": "^15.0.0"
},
"peerDependencies": {
"react": "^15.0.0",
"styled-components": "1.1.3 || ^2.0.0 || ^3.0.0 || ^4.0.0"
}
}