-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "gifty",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon --exec \"./scripts/wait-for.sh localhost:27017 -- node dist/index.js\"",
"mongodb": "docker-compose up mongodb",
"postinstall": "npm run build-ts || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kern/gifty.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kern/gifty/issues"
},
"engines": {
"node": ">= 10.x.x"
},
"homepage": "https://github.com/kern/gifty#readme",
"dependencies": {
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-route": "^3.2.0",
"mongoose": "^5.3.1",
"typegoose": "^5.4.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^4.0.1",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.0",
"@types/koa-route": "^3.2.4",
"@types/mongoose": "^5.2.18",
"@types/uuid": "^3.4.4",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.1"
}
}