-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 880 Bytes
/
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
{
"name": "first-webapp-react",
"version": "1.0.0",
"description": "",
"main": "main.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify -v -d -t [ reactify --es6 ] main.js -o compiled.js",
"build": "NODE_ENV=production browserify -t [ reactify --es6 ] main.js | uglifyjs > compiled.js"
},
"author": "Tutorialzine",
"license": "MIT",
"dependencies": {
"async": "^2.0.0-rc.5",
"body-parser": "^1.1.2",
"express": "^4.13.4",
"gm": "^1.22.0",
"image-size": "^0.5.0",
"moment": "^2.10.2",
"multer": "^1.1.0",
"react": "^0.14.8",
"react-breadcrumbs": "^1.3.13",
"react-dom": "^0.14.8",
"react-router": "^2.0.1"
},
"devDependencies": {
"browserify": "^9.0.8",
"reactify": "^1.1.0",
"uglify-js": "^2.4.20",
"watchify": "^3.1.2"
}
}