generated from thisisagile/easy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.36 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": "@thisisagile/easy-sample",
"version": "0.1.0",
"description": "Straightforward set of examples for building domain-driven microservice architectures using @thisisagile/easy",
"author": "Sander Hoogendoorn",
"license": "MIT",
"main": "dist/app.js",
"types": "dist/app",
"repository": {
"type": "git",
"url": "git@github.com:thisisagile/easy-sample.git"
},
"keywords": [
"typescript",
"microservices",
"domain-driven-design",
"evolutionay-architecture",
"examples"
],
"scripts": {
"format": "prettier --write src test *.js *.json",
"prebuild": "npm run format",
"build": "tsc",
"pretest": "jest --clearCache",
"test": "jest --coverage",
"prestart": "npm run build",
"start": "node -r .",
"quick": "ts-node -r dotenv/config src/service",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@thisisagile/easy-test": "^1.14.2",
"dotenv": "^8.2.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"typescript": "4.2.4"
},
"dependencies": {
"@thisisagile/easy": "^4.4.13",
"@types/express": "^4.17.11",
"express": "^4.17.1"
},
"engines": {
"node": ">=v14.16.0",
"npm": ">=7.7.6"
}
}