-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "cats",
"version": "0.1.0",
"description": "cat facts and pictures",
"main": "dist/index.html",
"scripts": {
"start": "open http://localhost:8080/dist & webpack --watch & webpack-dev-server --watch",
"lint": "node_modules/.bin/eslint src/",
"clean": "rm -rf dist/*.hot-update.js*"
},
"repository": {
"type": "git",
"url": "https://github.com/mLuby/cats.git"
},
"keywords": [],
"author": "Mike Luby <[email protected]> (https://github.com/mLuby)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mLuby/cats/issues"
},
"homepage": "https://github.com/mLuby/cats",
"dependencies": {
"axios": "^0.9.1",
"express": "^4.13.4",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-thunk": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.0.0",
"eslint-plugin-react": "^3.16.1",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}