-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@mrzen/provider-js-template",
"version": "1.0.0",
"description": "Product Provider API Template",
"main": "dist/server.js",
"repository": "https://github.com/mrzen/provider-js-template",
"author": "Leo Adamek <[email protected]>",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/mrzen/provider-template-js/issues"
},
"engines": {
"node": "17",
"yarn": "^1.22"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/server.js",
"start:watch": "nodemon src/server.ts"
},
"dependencies": {
"@koa/router": "^10.1.1",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"dotenv": "^16.0.0",
"ioredis": "^5.0.4",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"nanoid": "^3.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-json": "^2.0.20",
"@types/koa__router": "^8.0.11",
"@types/nanoid": "^3.0.0",
"@types/node": "^17.0.24",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}