forked from jeswin/server-template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "server-template-nodejs",
"version": "0.0.1",
"private": true,
"author": "Jeswin Kumar<[email protected]>",
"contributors": [
"Jeswin Kumar<[email protected]>"
],
"scripts": {
"transpile": "./build.sh",
"test": "./build.sh && mocha --exit dist/test/test.js"
},
"bin": {
"server-template-nodejs": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.0.1",
"@types/pg": "^7.14.3",
"@types/yargs": "^15.0.5",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-router": "^8.0.8",
"pg": "^8.2.0",
"psychopiggy": "^2.0.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/should": "^13.0.0",
"@types/supertest": "^2.0.9",
"mocha": "^7.1.2",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"license": "MIT"
}