-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "react-deps",
"version": "0.1.1",
"description": "",
"main": "./lib/index.js",
"scripts": {
"dev": "npm run build_client && BABEL_DISABLE_CACHE=1 nodemon dev/bootstrap.js",
"build": "babel src/index.js --out-file lib/index.js",
"build_client": "browserify dev/client.js -o lib/client.js -t [ babelify ]",
"prepublish": "npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/rikutiira/react-deps.git"
},
"author": "Riku Tiira (https://github.com/rikutiira)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.13.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"nodemon": "^1.10.0",
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0"
}
}