-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
92 lines (92 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ignitus-server",
"version": "1.0.0",
"private": true,
"engines": {
"node": "13.2.0"
},
"scripts": {
"build": "tsc",
"tsc": "tsc",
"postinstall": "npm run tsc",
"start": "node build/index.js",
"start-dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "jest --passWithNoTests"
},
"nyc": {
"check-coverage": false,
"all": true,
"extension": [
".js"
],
"include": [
"**/*.js"
],
"exclude": [
"**/*.spec.js",
"build",
"node_modules"
],
"collectCoverageFrom": [
"./config/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"bcrypt": "^3.0.1",
"body-parser": "~1.18.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.2.0",
"mongoose": "5.11.9",
"morgan": "~1.9.0",
"tslib": "2.0.3"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/eslint": "6.8.1",
"@types/express": "4.17.1",
"@types/jest": "26.0.3",
"@types/jsonwebtoken": "8.5.0",
"@types/mongoose": "5.7.21",
"@types/morgan": "1.9.0",
"@types/node": "13.9.1",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"babel-register": "^6.26.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"jest": "26.1.0",
"nodemon": "1.19.4",
"nyc": "^15.0.0",
"prettier": "2.0.5",
"supertest": "4.0.2",
"ts-jest": "26.1.1",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"collectCoverageFrom": [
"api/**/*.{js,jsx,ts}"
],
"coverageReporters": [
"json",
"html"
]
}
}