-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.74 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
{
"name": "react-movie-app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "browserify ./lib/app.jsx -o ./build/js/bundle.js -t [ babelify --presets [ es2015 react ] ] -v",
"watch": "watchify ./lib/app.jsx -o ./build/js/bundle.js -t [ babelify --presets [ es2015 react ] ] -v",
"build": "browserify ./lib/app.jsx -o ./build/js/bundle.js -t [ babelify --presets [ es2015 react ] ] -g [ envify --NODE_ENV production ] -g uglifyify -p bundle-collapser/plugin --compress --mangle",
"start": "cd ./build && python -m SimpleHTTPServer 8888"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkadiusz-wieczorek/react-movie-app.git"
},
"author": {
"name": "Arkadiusz Wieczorek",
"email": "[email protected]",
"url": "http://arkadiusz-wieczorek.pl"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/arkadiusz-wieczorek/react-movie-app/issues"
},
"homepage": "https://github.com/arkadiusz-wieczorek/react-movie-app#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"bundle-collapser": "^1.2.1",
"envify": "^4.0.0",
"reactify": "^1.1.1",
"uglifyify": "^3.0.4",
"watchify": "^3.9.0"
},
"dependencies": {
"axios": "^0.16.1",
"es6-promise": "^4.1.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1"
}
}