-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "react-tinyletter",
"version": "0.3.2",
"description": "Easily add a TinyLetter subscription form to your React apps",
"main": "dist/react-tinyletter.js",
"author": "Garet McKinley",
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build-storybook": "build-storybook",
"build:dist": "rollup -c && rollup -c --environment PRODUCTION",
"build:lib": "babel src --out-dir lib",
"clean": "rm -rf dist/*",
"docs": "esdoc -c esdoc.json",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src",
"storybook": "start-storybook -p 6006"
},
"bugs": {
"url": "https://github.com/jsbros/react-tinyletter/issues"
},
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/jsbros/react-tinyletter.git"
},
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "^0.0.3",
"eslint": "^3.10.2",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.7.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.4.1",
"styled-components": "^1.4.6"
}
}