-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-koa-mongoose-starter",
"version": "1.2.0",
"description": "When Function Found Type",
"main": "./src/index.ts",
"scripts": {
"build-docker": "make build",
"run-docker": "make run",
"help": "make help",
"documentation": "./node_modules/.bin/typedoc --target ES6 --out documentation/ ./src",
"compose-up": "make compose-daemon",
"compose-down": "make compose-down",
"compose-build": "make compose-build",
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/ts-node ./src/index.ts",
"test": "jest --forceExit --coverage --verbose",
"watch": "env ./config.env && nodemon --watch 'src/**/*' -e ts,tsx --exec ./node_modules/.bin/ts-node ./src/index.ts"
},
"engines": {
"node": "12.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptariche/typescript-koa-mongoose-starter.git"
},
"keywords": [
"koa",
"typescript",
"starter",
"mongoose"
],
"author": "Peter A Tariche",
"license": "MIT",
"bugs": {
"url": "https://github.com/ptariche/typescript-koa-mongoose-starter/issues"
},
"homepage": "https://github.com/ptariche/typescript-koa-mongoose-starter#readme",
"dependencies": {
"@koa/cors": "^2.2.3",
"bcrypt": "^3.0.8",
"bluebird": "^3.7.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.12.0",
"koa-helmet": "^4.2.1",
"koa-joi-router": "^5.2.0",
"koa-morgan": "^1.0.1",
"mongoose": "^5.9.14"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.31",
"@types/chai": "^4.2.11",
"@types/jest": "^24.9.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "2.0.49",
"@types/koa-helmet": "^3.1.2",
"@types/koa-joi-router": "5.2.2",
"@types/koa-morgan": "^1.0.4",
"@types/koa__cors": "^2.2.3",
"@types/mongoose": "^5.7.20",
"@types/supertest": "^2.0.9",
"chai": "^4.2.0",
"jest": "^24.9.0",
"mongodb-memory-server": "^5.2.11",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.1",
"typedoc": "^0.15.8",
"typescript": "^3.9.2"
}
}