-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "movie-finder-app-with-react",
"version": "1.0.0",
"description": "training react redux app ",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --hot --progress",
"start:prod": "node server.js",
"build": "webpack",
"test": "jest",
"lint": "eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vramaniuk/movie-finder-app-with-react.git"
},
"keywords": [
"movie",
"TMDB API"
],
"author": "vramaniuk <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vramaniuk/movie-finder-app-with-react/issues"
},
"homepage": "https://github.com/vramaniuk/movie-finder-app-with-react#readme",
"engines": {
"node": "8.4.1",
"npm": "5.2.0"
},
"dependencies": {
"axios": "0.15.3",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"compression": "1.6.2",
"css-loader": "0.28.4",
"express": "4.15.3",
"file-loader": "^0.11.2",
"firebase": "3.9.0",
"html-webpack-plugin": "2.29.0",
"if-env": "1.0.0",
"material-ui": "0.17.4",
"prop-types": "15.5.10",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-redux": "5.0.5",
"react-router": "3.0.5",
"react-router-redux": "4.0.8",
"react-tap-event-plugin": "2.0.1",
"redux": "3.6.0",
"redux-devtools-extension": "2.13.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"style-loader": "0.18.2",
"url-loader": "0.5.9",
"webpack": "3.2.0"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "2.6.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.1.0",
"jest": "19.0.2",
"node-static": "0.7.9",
"npm": "5.2.0",
"react-addons-test-utils": "15.6.0",
"react-test-renderer": "15.5.4",
"webpack-dev-server": "2.5.1"
}
}