-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
57
58
59
{
"name": "event_storage_prototype",
"version": "0.2.0",
"private": false,
"license": "MIT",
"dependencies": {
"immutable": "^4.0.0-rc.12",
"mongoose": "^5.3.11",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.1.0",
"rxjs-compat": "^6.1.0",
"express": "^4.16.4",
"routing-controllers": "^0.7.7",
"typedi": "^0.8.0"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/mongodb": "^3.0.5",
"@types/mongoose": "^5.0.13",
"@types/express": "^4.16.0",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.1.6"
},
"author": {
"email": "[email protected]",
"name": "Tri Nguyen"
},
"scripts": {
"jest": "npm run test",
"tsc": "npm run tsc",
"test": "jest --coverage",
"compile": "tsc -p tsconfig.json",
"lint": "tslint tsconfig.json",
"compileSample": "tsc -p samples/tsconfig.json",
"runSample": ""
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageDirectory": "<rootDir>",
"coverageReporters": [
"json",
"text-summary"
]
}
}