-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "react-google-news-widget",
"version": "1.3.0",
"main": "dist/index.js",
"devDependencies": {
"@storybook/addon-actions": "^3.2.10",
"@storybook/addon-knobs": "^3.2.12",
"@storybook/addon-links": "^3.2.10",
"@storybook/react": "^3.2.12",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "7.0.0-beta.2",
"babel-eslint": "^7.1.0",
"babel-preset-es2015": "7.0.0-beta.2",
"babel-preset-react": "7.0.0-beta.2",
"babel-preset-stage-1": "7.0.0-beta.2",
"babel-preset-stage-2": "7.0.0-beta.2",
"lint-staged": "^4.2.2",
"pre-commit": "^1.2.2",
"prettier": "^1.7.0"
},
"homepage": "https://github.com/Astrocoders/react-google-news-widget",
"babel": {
"presets": [
"es2015",
"stage-2",
"stage-1",
"react"
]
},
"peerDependencies": {
"react": "^15.6.1",
"styled-components": "^2.1.2"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 120 --semi false",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"lint:staged": "lint-staged",
"build": "babel lib --ignore __tests__ --out-dir ./dist",
"storybook": "start-storybook -p 6006",
"storybook:deploy": "storybook-to-ghpages",
"build-storybook": "build-storybook"
},
"dependencies": {
"ramda": "^0.24.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rebass": "^1.0.4"
}
}