-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 961 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
38
{
"name": "daily-coding-challenge-server",
"version": "0.0.1",
"description": "daily coding challenge read / submit",
"main": "server/index.js",
"scripts": {
"test": "ava",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/or9/daily-coding-challenge-server.git"
},
"keywords": [
"daily-coding-challenge"
],
"author": "Rahman",
"license": "MIT",
"bugs": {
"url": "https://github.com/or9/daily-coding-challenge-server/issues"
},
"homepage": "https://github.com/or9/daily-coding-challenge-server#readme",
"dependencies": {
"cassandra-driver": "^4.1.0",
"handlebars": "^4.3.0",
"koa": "^2.7.0",
"koa-morgan": "^1.0.1",
"koa-passport": "^4.1.3",
"koa-router": "^7.4.0",
"koa-session": "^5.12.2",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"rotating-file-stream": "^1.4.1"
},
"devDependencies": {
"ava": "^1.4.1"
}
}