-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "diversify",
"version": "1.0.0",
"description": "Diversify is a mobile portal to your Guild Wars 2 commerce and investments. Given an official API key, it can:\r * Show a history of items that you've purchased and sold\r * Follow any purchases that you tag as investments\r * Watch the price of bookmarked items\r * Summarize the performance of your past investments\r * Link portfolio items to track them in tandem",
"main": "server.js",
"engines": {
"node": "4.1.1"
},
"scripts": {
"watch": "watchify app.js -o public/js/bundle.js -v",
"browserify": "browserify app.js -o | uglifyjs > public/js/bundle.js",
"build": "npm run browserify ",
"start": "node server.js",
"deploy": "npm run browserify && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xmasreturns/Diversify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Xmasreturns/Diversify/issues"
},
"homepage": "https://github.com/Xmasreturns/Diversify#readme",
"dependencies": {
"bcrypt": "^0.8.5",
"body-parser": "^1.14.1",
"browserify": "^12.0.1",
"cookie-parser": "^1.4.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"history": "^1.13.0",
"lodash": "^3.10.1",
"mongodb": "^2.0.47",
"mongoose": "^4.2.4",
"passport": "^0.3.0",
"passport-local": "^1.0.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-router": "^1.0.0-rc4",
"reactify": "^1.1.1",
"uglifyjs": "^2.4.10"
},
"browserify": {
"transform": [
"reactify"
]
}
}