-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "react-seed",
"version": "0.0.1",
"description": "A seed project for a React build",
"main": "src/index.js",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --inline --port 3000 --host 0.0.0.0",
"test": "node ./node_modules/mocha/bin/mocha --opts mocha.opts",
"watch": "node ./node_modules/mocha/bin/mocha --opts mocha.opts -w"
},
"author": "Nick Meldrum <[email protected]> (http://nickmeldrum.com/)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"enzyme": "^2.7.0",
"flow-bin": "^0.38.0",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.3.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/nickmeldrum/react-seed.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/nickmeldrum/react-seed/issues"
},
"homepage": "https://github.com/nickmeldrum/react-seed#readme"
}