forked from translifeline/translifeline-home
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.65 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
53
{
"name": "translifeline-home",
"version": "1.0.0",
"description": "Trans Lifeline's public facing page",
"homepage": "https://www.translifeline.org",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.10.3"
},
"main": "app.js",
"scripts": {
"browserify": "browserify client/main.js -o public/js/bundle.js",
"sass": "node-sass styles/ -o public/styles/",
"prestart": "npm run sass && npm run browserify",
"start": "node app.js",
"browserify-watch": "watchify client/main.js -o public/js/bundle.js -d",
"sass-watch": "node-sass -w styles/ -o public/styles/",
"start-dev": "export NODE_ENV=development && export MONGODB_URI=mongodb://localhost:27017/translifeline-home && parallelshell 'npm run sass-watch' 'npm run browserify-watch' 'nodemon app.js'"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TransLifeline/translifeline-home"
},
"bugs": "https://github.com/TransLifeline/translifeline-home/issues",
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"browserify": "^13.1.0",
"express": "^4.14.0",
"font-awesome": "^4.6.3",
"jquery-browserify": "^1.8.1",
"mailchimp-api": "^2.0.7",
"mongodb": "^2.2.5",
"morgan": "^1.7.0",
"node-normalize-scss": "^1.3.2",
"node-sass": "^3.8.0",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"prompt": "^1.0.0",
"pug": "^2.0.0-beta3",
"request": "^2.74.0",
"serve-favicon": "^2.3.0",
"susy": "^2.2.12"
},
"devDependencies": {
"express-livereload": "0.0.24",
"nodemon": "^1.9.2",
"parallelshell": "^2.0.0",
"watchify": "^3.7.0"
}
}