-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "bulker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node",
"dev": "nodemon --ignore client --ignore public --exec npm run babel-node -- server/index.js",
"start": "node index.js",
"build": "browserify client/index.js -g uglifyify -t [babelify --presets [ react ] ] -o public/app.js",
"watch": "watchify client/index.js -t [babelify --presets [ react ] ] -v -o public/app.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lhahne/bulker.git"
},
"author": "Lauri Hahne",
"license": "ISC",
"bugs": {
"url": "https://github.com/lhahne/bulker/issues"
},
"homepage": "https://github.com/lhahne/bulker#readme",
"dependencies": {
"axios": "^0.8.1",
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"body-parser": "^1.14.2",
"browserify": "^12.0.1",
"connect-mongodb-session": "^1.1.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"lodash": "^3.10.1",
"loglevel": "^1.4.0",
"mongodb": "^2.1.2",
"mongoskin": "^2.0.3",
"nodemon": "^1.8.1",
"passport": "^0.3.2",
"passport-fitbit-oauth2": "^1.0.1",
"react": "^0.14.5",
"react-dom": "^0.14.5",
"rx": "^4.0.7",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"uglifyify": "^3.0.1",
"watchify": "^3.6.1"
}
}