-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 937 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
{
"name": "quiz-fight-server",
"version": "1.0.0",
"description": "Quiz Fight Server",
"main": "quizFightServer.js",
"scripts": {
"test": "mocha ./tests/**/*.js && jshint ./models/*.js && jshint ./controllers/*.js && jshint ./routes/*.js && jshint ./tests/**/*.js",
"start": "node ./bin/www"
},
"repository": {
"type": "git",
"url": "https://github.com/RogueOneQF/quiz-fight-server.git"
},
"author": "RogueOne team <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RogueOneQF/quiz-fight-server/issues"
},
"homepage": "https://github.com/RogueOneQF/quiz-fight-server#readme",
"dependencies": {
"async": "^2.4.1",
"body-parser": "~1.13.2",
"express": "^4.15.2",
"firebase-admin": "^5.0.0",
"mongoose": "^4.4.14"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"jshint": "^2.9.4",
"mocha": "^3.4.1"
}
}