forked from errant-brownie/associations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 867 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
33
34
35
36
37
{
"name": "free-association",
"version": "0.0.1",
"description": "Association engine",
"main": "app.js",
"scripts": {
"dbtest": "ENV_DB=testdb mocha server/controllers/controllerTests.js",
"start": "ENV_DB=freeAssoc nodemon server/app.js"
},
"engines": {
"node": "5.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/errant-brownie"
},
"keywords": [
"association"
],
"author": "errant-brownie",
"license": "MIT",
"dependencies": {
"bcrypt-node": "^0.1.0",
"bluebird": "^3.1.1",
"body-parser": "^1.14.2",
"chai": "^3.4.1",
"connect-ensure-login": "^0.1.1",
"express": "^4.13.3",
"express-session": "^1.12.1",
"mocha": "^2.3.4",
"morgan": "^1.6.1",
"mysql": "^2.10.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"sequelize": "^3.17.1"
}
}