-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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": "movie-trailer",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"connected-react-router": "^6.3.2",
"core-js": "^3.0.0",
"express": "^4.16.4",
"history": "^4.9.0",
"lodash": "^4.17.21",
"nuka-carousel": "^4.5.3",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-jss": "^8.6.1",
"react-player": "^1.10.0",
"react-redux": "^6.0.0",
"react-router": "^5.0.0",
"react-router-redux": "^4.0.8",
"react-youtube": "^10.1.0",
"redux": "^4.0.0",
"redux-promise-middleware": "^6.0.1",
"redux-thunk": "^2.3.0",
"screenfull": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lcd11001/MovieTrailer.git"
},
"keywords": [
"material-ui",
"react",
"demo",
"react-redux"
],
"author": "Luong Cong Dan",
"license": "ISC",
"bugs": {
"url": "https://github.com/lcd11001/MovieTrailer/issues"
},
"homepage": "https://github.com/lcd11001/MovieTrailer#readme",
"main": "dist_server/main.js",
"scripts": {
"start": "node dist_server/main.js",
"nodemon": "nodemon dist_server/main.js",
"watch": "webpack --mode development --watch",
"reload": "start npm run watch && start npm run nodemon",
"dev": "webpack --mode development --progress",
"build": "webpack --mode production --progress",
"stats": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json dist",
"check": "npx standard \"src\\*.js\"",
"login": "firebase login",
"deploy": "firebase deploy --except functions"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.10",
"redux-devtools-extension": "^2.13.8",
"reload": "^2.4.0",
"standard": "^12.0.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules"
]
}
}