-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.89 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.89 KB
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
{
"name": "@memed-dev/epiderme",
"version": "0.0.0-development",
"description": "Memed's component toolkit",
"main": "dist/epiderme.umd.js",
"module": "dist/epiderme.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config ./build/rollup.config.js",
"prebuild": "rimraf dist",
"lint": "eslint",
"report-coverage": "codecov",
"test": "jest -c --coverage",
"test:watch": "jest -c --watch",
"dev": "start-storybook -p 9001 -c .storybook",
"docs:build": "build-storybook -c .storybook -o docs",
"docs:publish": "gh-pages -d docs",
"semantic-release": "semantic-release"
},
"keywords": [
"react",
"components"
],
"homepage": "https://memeddev.github.io/epiderme",
"repository": {
"type": "git",
"url": "https://github.com/MemedDev/epiderme"
},
"bugs": {
"url": "https://github.com/MemedDev/epiderme/issues"
},
"author": "Carlos Silva <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.3",
"styled-components": "4.1.3"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-1": "^7.0.0",
"@storybook/addon-knobs": "4.1.13",
"@storybook/addon-options": "^5.0.1",
"@storybook/addons": "4.1.13",
"@storybook/react": "^4.1.13",
"@storybook/theming": "^5.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-styled-components": "1.10.0",
"codecov": "3.2.0",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "2.0.1",
"husky": "1.3.1",
"jest": "^24.1.0",
"jest-pnp-resolver": "^1.1.0",
"jest-styled-components": "6.3.1",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-app-polyfill": "^0.2.1",
"react-dom": "^16.8.3",
"rimraf": "2.6.3",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "2.2.0",
"storybook-addon-jsx": "6.0.0",
"storybook-readme": "^4.0.5",
"styled-components": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"dependencies": {
"deepmerge": "3.2.0"
}
}