-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.48 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
78
{
"name": "movies-app",
"version": "1.0.0",
"description": "Single page application, which will allow users to search The Movie Database (TMDb)",
"engines": {
"node": "10.11.0"
},
"scripts": {
"build-dev": "webpack --config=webpack.config.development.js",
"build": "webpack -p --progress --config=webpack.config.production.js",
"start": "node server/app.js",
"test": "jest --coverage",
"lint": "eslint ./src --ext .js --ext .jsx"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./jest.setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shubich/movies-app.git"
},
"author": "Andrei Shubich",
"bugs": {
"url": "https://github.com/shubich/movies-app/issues"
},
"homepage": "https://github.com/shubich/movies-app#readme",
"dependencies": {
"@babel/polyfill": "^7.4.3",
"classnames": "^2.2.6",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"express": "^4.16.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-loading": "^1.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^24.7.1",
"babel-loader": "7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"css-loader": "^2.1.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"fetch-mock": "^5.13.1",
"file-loader": "^1.1.5",
"ignore-loader": "^0.1.2",
"jest": "^24.7.1",
"less": "^3.9.0",
"less-loader": "^4.0.5",
"react-test-renderer": "^16.4.1",
"regenerator-runtime": "^0.11.0",
"style-loader": "0.18.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.7.2"
}
}