-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 962 Bytes
/
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
{
"name": "dev-log",
"version": "1.0.0",
"description": "A quick API server for reading and writing log messages.",
"main": "index.js",
"scripts": {
"styles": "node-sass public/styles/main.scss public/main.css",
"styles_dev": "node-sass --watch public/styles/main.scss public/main.css",
"webpack_dev": "webpack --progress --colors --watch",
"dev": "npm run styles_dev | npm run webpack_dev",
"start": "npm run styles | webpack | node index.js"
},
"author": "Remy Bach",
"license": "ISC",
"dependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"bcrypt": "^0.8.7",
"handlebars": "^4.0.5",
"hapi": "^13.4.0",
"hapi-auth-basic": "^4.2.0",
"hapi-mongodb": "^6.0.0",
"inert": "^4.0.0",
"markdown-it": "^6.0.5",
"moment": "^2.13.0",
"mongodb": "^2.1.19",
"node-sass": "^3.4.2",
"vision": "^4.1.0",
"webpack": "^1.9.11"
}
}