-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
106 lines (106 loc) · 3.37 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "movie-n-tv",
"description": "Movies, TV shows, celebrities and more",
"version": "1.0.0-beta",
"author": "Pranesh Ravi <[email protected]>",
"bugs": {
"url": "https://github.com/praneshr/movie-app/issues"
},
"dependencies": {
"axios": "^0.15.2",
"babel-core": "^6.18.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.5",
"compression": "^1.7.0",
"config": "^1.24.0",
"express": "^4.14.0",
"express-minify-html": "^0.11.4",
"express-stream": "^0.8.0",
"handlebars": "^4.0.10",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"lodash-es": "^4.17.4",
"prop-types": "^15.6.0",
"qs": "^6.5.0",
"react": "^16.0.0",
"react-async-component": "^1.0.2",
"react-css-modules": "^4.0.3",
"react-dom": "^16.0.0",
"react-easy-bind": "^0.2.0",
"react-helmet": "^5.1.3",
"react-hot-loader": "^3.0.0-beta.6",
"react-images": "^0.5.5",
"react-lazyload": "^2.2.7",
"react-progressive-bg-image": "^2.0.4",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-actions": "^1.1.0",
"redux-thunk": "^2.1.0",
"styled-components": "^2.1.2"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-minify-webpack-plugin": "^0.2.0",
"clean-webpack-plugin": "^0.1.14",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.0",
"eslint": "^3.11.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.9.0",
"handlebars-loader": "^1.5.0",
"html-webpack-plugin": "^2.24.1",
"import-glob-loader": "^1.1.0",
"isomorphic-style-loader": "^4.0.0",
"mime-types": "^2.1.17",
"name-all-modules-plugin": "^1.0.1",
"node-sass": "^3.13.0",
"now-client": "^1.1.1",
"offline-plugin": "^4.8.4",
"path-to-regexp": "^1.7.0",
"postcss-loader": "^1.1.1",
"sass-loader": "^4.0.2",
"sass-resources-loader": "^1.1.0",
"sleep": "^5.1.1",
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.11.4",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.27",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.2",
"webpack-manifest-plugin": "^1.3.1",
"webpack-pwa-manifest": "^3.3.2",
"webpack-s3-plugin": "^1.0.0-rc.0"
},
"homepage": "https://github.com/praneshr/movie-app#readme",
"license": "GPL-3.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/praneshr/movie-app.git"
},
"scripts": {
"build": "webpack --progress --colors",
"build:stats": "webpack --profile --json > stats.json",
"build:watch": "webpack --progress --colors --watch",
"deploy": "now --public --docker --alias bx-test.now.sh",
"start": "node server.js",
"start:dev": "yarn build && yarn start",
"start:dev:watch": "nodemon -w server.js server.js",
"test": "echo"
}
}