-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 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
{
"name": "dddtw-coffeeshop-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"dev": "NODE_ENV=dev ts-node-dev --respawn --transpileOnly ./src/index.ts",
"codecov": "jest --coverage && codecov -t $CODE_COV_UPLOAD_TOKEN"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.11.6",
"codecov": "^3.5.0",
"gts": "^1.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.42",
"tslint": "^5.20.0",
"typescript": "~3.6.3"
},
"dependencies": {
"@actions/core": "^1.1.0",
"@types/jest": "^24.0.18",
"@types/uuid": "^3.4.5",
"uuid": "^3.3.3"
}
}