-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 936 Bytes
/
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
{
"name": "clean-arch-in-node",
"version": "1.0.0",
"description": "Clean Architecture in Node.JS",
"main": "index.js",
"scripts": {
"start": "ts-node-dev ./src/App.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/igor-toporet/clean-arch-in-node"
},
"keywords": [
"Clean",
"Architecture"
],
"author": "Igor Toporet",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.4",
"@types/node": "^16.11.7",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"dependencies": {
"ajv": "^8.7.1",
"awilix": "^6.0.0",
"awilix-koa": "^6.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"typeorm": "^0.2.40"
}
}