-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "ts-blog-domain",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node --files -r tsconfig-paths/register src/index.ts",
"build": "webpack",
"test": "ts-mocha --recursive --require tsconfig-paths/register \"test/**/*.ts\"",
"cover": "nyc npm t"
},
"dependencies": {
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@types/uuid": "^8.0.1",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"ts-loader": "^8.0.2",
"ts-mocha": "^7.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typemoq": "^2.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap": true,
"all": true
}
}