-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "workshop-hexagonal-ddd",
"version": "1.0.0",
"description": "Workshop Hexagonal Architecture with DDD",
"main": "index.js",
"dependencies": {
"axios": "^0.21.2",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"restify": "^8.5.1",
"restify-errors": "^8.0.2",
"source-map-support": "^0.5.10",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.9",
"@types/restify": "^8.4.2",
"@types/restify-errors": "^4.3.3",
"@types/uuid": "^7.0.4",
"babel-jest": "^25.4.0",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"jest": "^25.4.0",
"nodemon": "^2.0.4",
"ts-loader": "^5.3.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"webpack": "^4.29.0",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"build": "rimraf build && tsc",
"test": "jest",
"start": "nodemon --exec ts-node server.ts",
"start-server": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariobittencourt/workshop-hexagonal-ddd.git"
},
"keywords": [
"workshop",
"typescript"
],
"author": "Mario Bittencourt",
"license": "ISC",
"bugs": {
"url": "https://github.com/mariobittencourt/workshop-hexagonal-ddd/issues"
},
"homepage": "https://github.com/mariobittencourt/workshop-hexagonal-ddd#readme"
}