-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "hackingedu",
"version": "0.0.1",
"private": true,
"scripts": {
"watch": "watchify app.js -o public/js/bundle.js -v",
"browserify": "browserify app.js | uglifyjs > public/js/bundle.js",
"build": "npm run browserify ",
"start": "npm install && nodemon server"
},
"dependencies": {
"debug": "^2.1.3",
"express": "~4.12.2",
"express-handlebars": "^2.0.1",
"mongoose": "^4.0.2",
"node-jsx": "^0.13.3",
"node-sass-middleware": "^0.5.0",
"react": "^0.13.2",
"react-google-analytics": "^0.2.0",
"serve-favicon": "~2.2.0",
"socket.io": "^1.3.5",
"twitter": "^1.2.5"
},
"description": "HackingEDU Web App | Built with Mongo, Express, React, Node, and <3",
"main": "app.js",
"devDependencies": {
"browserify": "^9.0.8",
"nodemon": "^1.3.7",
"reactify": "^1.1.0",
"uglify-js": "^2.4.20",
"watchify": "^3.2.1"
},
"browserify": {
"transform": [
"reactify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hackingedu/app"
},
"author": "James Kao",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackingedu/app/issues"
},
"homepage": "https://github.com/hackingedu/app"
}