-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 979 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
34
35
36
37
38
39
40
{
"name": "fiveguardoffense-reactjs-ui",
"version": "0.1.0",
"description": "ReactJS UI for Resume Site",
"main": "server.js",
"scripts": {
"watch": "watchify server.js -o public/js/bundle.js -v",
"browserify": "browserify server.js | uglifyjs > public/js/bundle.js",
"build": "npm run browserify ",
"start": "npm install"
},
"author": "Dan McGuane",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/dmcgua01/fiveguardoffense_reactjs_ui.git"
},
"dependencies": {
"express": "^4.13.0",
"express-handlebars": "^2.0.0",
"ejs": "^2.3.1",
"mongoose": "^4.0.7",
"node-jsx": "~0.11.0",
"node-sass": "^3.2.x",
"react": "^0.13.0",
"socket.io": "^1.3.0"
},
"devDependencies": {
"browserify": "~6.0.3",
"nodemon": "^1.2.1",
"reactify": "~0.14.0",
"uglify-js": "~2.4.15",
"watchify": "^3.1.1"
},
"browserify": {
"transform": [
"reactify"
]
}
}