-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "linkwrapper",
"version": "0.0.1",
"private": true,
"scripts": {
"watch-player": "watchify public/js/player/index.js -o public/js/_player.js",
"watch-site": "watchify public/js/index.js -o public/js/_site.js",
"build": "uglifyjs public/js/player/lib/*.js -o public/js/_plib.js && browserify public/js/player -o public/js/_player.js && browserify public/js -o public/js/_site.js",
"start": "npm run watch-player & npm run watch-site & nodemon -e js,css,dust ./server.js",
"test": "cd test && ./runTests.sh"
},
"engines": {
"node": "0.12.7"
},
"dependencies": {
"adaro": "0.1.x",
"bcrypt": "0.8.x",
"body-parser": "1.14.x",
"bunyan": "^1.5.1",
"checky": ">=1.3.x",
"cookies": "^0.5.1",
"dustjs-helpers": "1.5.x",
"dustjs-linkedin": "2.5.x",
"elman": "^0.5.1",
"express": "4.13.x",
"link-id": "^1.1.0",
"mailgun-js": "^0.7.2",
"mongodb": "1.4.x",
"morgan": "1.6.x",
"node-uuid": "^1.4.3",
"passport": "0.3.x",
"passport-facebook": "2.0.x",
"passport-google-oauth": "0.2.x",
"passport-local": "1.0.x",
"premailer-api": "^1.0.3",
"redis": "2.2.x",
"redis-limiter": "^1.0.3"
},
"devDependencies": {
"browserify": ">=11.2.0",
"nodemon": "1.2.x",
"supertest": "1.1.x",
"tape": "4.2.x",
"watchify": ">=3.4.0",
"uglify-js": "^2.5.0",
"q": "^1.4.0"
}
}