-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "server-template-nodejs",
"version": "0.0.1",
"private": true,
"author": "Jeswin Kumar<jeswinpk@agilehead.com>",
"contributors": [
"Jeswin Kumar<jeswinpk@agilehead.com>"
],
"scripts": {
"transpile": "./build.sh",
"test": "./build.sh && mocha --exit dist/test/index.js"
},
"bin": {
"server-template-nodejs": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
"pg": "^8.6.0",
"psychopiggy": "^2.0.8",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.2",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/pg": "^7.14.11",
"@types/should": "^13.0.0",
"@types/supertest": "^2.0.11",
"@types/yargs": "^16.0.1",
"mocha": "^8.3.2",
"should": "^13.2.3",
"supertest": "^6.1.3"
}
}