-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "react-component-demo",
"version": "0.1.0",
"description": "a higher order component to create an editable demo of a react component",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"watch": "babel src --watch --out-dir dist",
"demo": "./node_modules/.bin/webpack --watch --progress",
"prepublish": "npm run build"
},
"author": "Conor Hastings",
"license": "MIT",
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-syntax-highlighter": "^2.8.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.2"
},
"peerDependencies": {
"react": ">= 15.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conorhastings/react-component-demo.git"
},
"bugs": {
"url": "https://github.com/conorhastings/react-component-demo/issues"
},
"homepage": "https://github.com/conorhastings/react-component-demo#readme"
}