-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "task-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"debug": "nodemon inspect src/index.js",
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest --runInBand"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/dotenv-config.js"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.0",
"mongoose": "^5.9.13",
"multer": "^1.4.2",
"sharp": "^0.23.4",
"validator": "^11.1.0"
},
"devDependencies": {
"eslint": "7.0.0",
"eslint-config-strongloop": "2.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "strict"
}
}