-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 941 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
39
40
41
42
{
"name": "node_blog",
"version": "0.0.1",
"description": "A blogging api written with Koa.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"blog",
"koa",
"node_blog",
"tdd"
],
"author": "akritrime",
"license": "MIT",
"dependencies": {
"jsonwebtoken": "^8.1.1",
"knex": "^0.14.3",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"objection": "^0.9.4",
"pg": "^7.4.1"
},
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/jsonwebtoken": "^7.2.5",
"@types/knex": "^0.14.5",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.27",
"@types/koa-session": "^5.7.1",
"@types/pg": "^7.4.1",
"@types/supertest": "^2.0.4",
"jest": "^22.2.1",
"supertest": "^3.0.0",
"ts-jest": "^22.0.3",
"typescript": "^2.7.1"
}
}