-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
{
"name": "react-es2015",
"version": "1.0.0",
"description": "Demo react application using es2015 syntax",
"main": "index.js",
"scripts": {
"start": "nodemon --watch ./src --exec babel-node ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint webpack.config.js src bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rs-saunders/react-es2015.git"
},
"author": "Richard Saunders <richard@sdevsolutions.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rs-saunders/react-es2015/issues"
},
"homepage": "https://github.com/rs-saunders/react-es2015#readme",
"dependencies": {
"babel-preset-stage-2": "^6.22.0",
"bootstrap": "^3.3.7",
"express": "^4.14.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^2.8.1",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.2.2",
"file-loader": "^0.9.0",
"nodemon": "^1.11.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.1"
}
}