forked from DmytroKirsanov/rpg-craftbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 889 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
40
41
42
43
{
"name": "craftbook",
"version": "0.0.1",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validation": "^1.0.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^9.1.2",
"typedi": "^0.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.17.1",
"jest": "^24.9.0"
},
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**"
],
"coverageReporters": [
"text-summary", "text"
],
"moduleDirectories": [
"node_modules"
]
},
"scripts": {
"test": "jest"
}
}