-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "simple-mtg",
"version": "0.0.1",
"description": "Simple mtg application",
"apidoc": {
"title": "Simple MTG API Documentation",
"url": "http://localhost:8000"
},
"main": "app.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"start": "node app.js",
"load": "node ./src/loadSets.js",
"import": "node ./src/importSets.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fabiomaciel/simple-mtg.git"
},
"keywords": [
"mtg",
"magic",
"the",
"gathering",
"magic",
"app"
],
"author": "Fabio Maciel, Magno Gouveia",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabiomaciel/simple-mtg/issues"
},
"homepage": "https://github.com/fabiomaciel/simple-mtg#readme",
"dependencies": {
"bcryptjs": "^2.3.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-session": "^1.14.1",
"express-validator": "^2.21.0",
"gravatar": "^1.6.0",
"moment": "^2.15.1",
"mongoose": "^4.6.4",
"mongoose-unique-validator": "^1.0.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"request": "^2.75.0",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2"
}
}