-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "node-hivemind",
"version": "0.1.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "eslint --ignore-path .gitignore . && echo 'Code adheres to the JS Standard.' && mocha test",
"lint": "eslint --ignore-path .gitignore . && echo 'Code adheres to the JS Standard.'",
"html-dev": "http-server"
},
"author": "Greg Linklater",
"contributors": [
"Rouxbert Lowe"
],
"license": "MIT",
"dependencies": {
"anvil-connect-express": "^0.1.0",
"body-parser": "^1.14.1",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"express": "^4.13.3",
"express-bunyan-logger": "^1.2.0",
"express-restify-mongoose": "^2.3.0",
"express-session": "^1.12.1",
"method-override": "^2.3.5",
"mongodb": "^2.0.48",
"mongoose": "^4.2.4",
"mongoose-autopopulate": "^0.4.0"
},
"devDependencies": {
"assert": "^1.3.0",
"eslint": "^1.8.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"http-server": "^0.8.5",
"mocha": "^2.3.4"
}
}