-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
79
80
81
82
83
84
85
{
"name": "FilmFlix",
"version": "1.1.10",
"description": "React, MobX, React-Router, MobX-Router, cypress and Webpack",
"main": "webpack.config.js",
"engines": {
"node": ">=9.0",
"npm": ">=5.0",
"yarn": ">=1.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js --mode development",
"build": "cross-env NODE_ENV=production rimraf ./dist && webpack --config webpack.config.production.js --mode production",
"postinstall": "webpack --config ./webpack.config.production.js --mode production --display-error-details",
"preview": "cross-env NODE_ENV=preview http-server ./dist -p 1234 -c-1",
"test:server": "npm run preview",
"test:cypress": "npx cypress open"
},
"repository": {
"type": "git",
"url": "https://github.com/Mbuendia/MagineProCodeChallenge.git"
},
"keywords": [
"app",
"ES6",
"ES7",
"heroku",
"mobx",
"mobx-router",
"react",
"react-router",
"reactjs",
"web app",
"Webpack"
],
"author": "Mario Buendia <[email protected]> (http://github.com/mbuendia)",
"license": "MIT",
"homepage": "",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"css-mqpacker": "^7.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "4.3.8",
"resolve-url-loader": "^2.3.1",
"rimraf": "^2.6.2",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"axios": "^0.21.1",
"cypress": "^10.6.0",
"http-server": "^0.11.1",
"lazy-route": "^1.0.7",
"mobx": "^5.1.2",
"mobx-react": "^5.2.8",
"mobx-react-devtools": "^6.0.3",
"mobx-react-router": "^4.0.5",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"rfx-core": "^1.6.0",
"whatwg-fetch": "^3.0.0"
}
}