-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
49
50
51
52
53
{
"name": "braid",
"version": "1.0.0",
"engines": {
"node": "11.2.0",
"npm": "6.4.1"
},
"description": "Braided messaging app.",
"main": "server.js",
"author": "PreeTy Ink.",
"repository": {
"type": "git",
"url": "https://github.com/tscizzle/Braid"
},
"dependencies": {
"body-parser": "^1.19.0",
"bower": "^1.7.10",
"connect-redis": "~3.0.2",
"cookie-parser": "~1.4.1",
"dotenv": "~2.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"method-override": "^2.3.10",
"mongoose": "^5.7.3",
"morgan": "^1.9.1",
"node-sass": "^4.8.3",
"passport": "~0.3.2",
"passport-local": "~1.0.0",
"passport-local-mongoose": "~4.0.0",
"redis": "~2.6.0-2",
"sendgrid": "~2.0.0",
"socket.io": "^2.3.0",
"underscore": "~1.8.2"
},
"devDependencies": {
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2"
},
"scripts": {
"start-mongo-dev:osx": "mongod",
"start-mongo-dev:linux": "sudo service mongod start",
"stop-mongo-dev:linux": "sudo service mongod stop",
"start-redis-dev": "redis-server",
"build-css": "node-sass public/ -o public/stylesheets",
"watch-css": "node-sass public/ -o public/stylesheets --watch --recursive",
"start-dev": "npm-run-all -p watch-css start",
"start": "nodemon",
"build": "npm run build-css",
"deploy": "git push staging master; heroku pipelines:promote -r staging;",
"postinstall": "bower cache clean && bower install",
"heroku-postbuild": "npm run build"
}
}