-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
{
"name": "nodeapitest",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"test": "jest",
"start": "node src/app.js",
"start-dev": "nodemon src/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.3.1",
"apollo-server-testing": "^2.3.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"express-validator": "^5.3.0",
"graphql": "^14.0.2",
"helmet": "^3.15.1",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.9",
"mongoose": "^5.3.10",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"shortid": "^2.2.14",
"validator": "^10.10.0"
},
"devDependencies": {
"jest": "^24.0.0",
"jest-cli": "^24.0.0",
"mockingoose": "^2.12.0",
"nodemon": "^1.18.9"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./dist"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleNameMapper": {
"^mongoose$": "<rootDir>/node_modules/mongoose"
}
}
}