-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.24 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.24 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
{
"name": "microbrewit-middleware",
"version": "1.0.0",
"description": "Server middleware for Microbrew.it",
"main": "src/bootstrap.coffee",
"scripts": {
"start": "node_modules/coffee-script/bin/coffee src/bootstrap.coffee --environment=prod",
"dev": "nodemon src/bootstrap.coffee --environment=dev",
"build-css": "node-sass --include-path scss public/scss/main.scss public/css/main.css",
"watch-css": "nodemon -e public/scss -x \"npm run build-css\"",
"watch-dev": "parallel --linebuffer ::: \"npm run watch-css\" \"npm run dev\""
},
"author": "Torstein Thune <torstein@gmail.com> (http://thune.io/)",
"license": "MIT",
"devDependencies": {
"node-sass": "^3.4.2",
"lattice": "Torthu/Lattice-2.git#master"
},
"dependencies": {
"avatar-generator": "1.0.6",
"coffee-script": "1.10.0",
"hapi": "8.6.1",
"hapi-auth-cookie": "2.2.0",
"jade": "^1.9.2",
"jwt-decode": "^2.0.1",
"lodash": "^4.0.0",
"microbrewit-formulas": "Microbrewit/microbrewit-formulas.git#feature/more-formulas",
"microbrewit-node": "Microbrewit/microbrewit-node.git#new-authentication-flow",
"microbrewit-recipe-calculator": "Microbrewit/microbrewit-recipe-calculator.git#master",
"minimist": "1.2.0"
}
}