-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·58 lines (58 loc) · 2.04 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
{
"name": "moview",
"homepage": "https://pritam-patil.github.io/moview",
"version": "0.1.0",
"private": true,
"dependencies": {
"airbrake-js": "^1.6.6",
"cross-fetch": "^3.0.1",
"dayjs": "1.8.34",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-input-range": "^1.3.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"reselect": "^4.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.84.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0-beta.0",
"copy-webpack-plugin": "4.5.1",
"css-loader": "0.28.11",
"file-loader": "^3.0.1",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.3",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "4.0.0",
"prop-types": "^15.6.2",
"sass-loader": "7.0.3",
"style-loader": "0.21.0",
"uglifyjs-webpack-plugin": "1.2.5",
"url-loader": "^1.1.2",
"webpack": "4.12.1",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.1.11",
"webpack-merge": "4.1.3",
"webpack-visualizer-plugin": "0.1.11"
},
"scripts": {
"start": "webpack-dev-server --mode development --hotOnly --config config/webpack.base.config.js --open --port=3000 --history-api-fallback --env.PLATFORM=local --env.VERSION=stag",
"prebuild": "rm -rf dist && webpack --mode production --config config/webpack.prod.config.js --env.PLATFORM=production --env.VERSION=stag --progress && mv dist/index.html dist/200.html",
"deploy": "gh-pages -d dist"
}
}