-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "code-challenges-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest --verbose --coverage",
"test-async": "jest --verbose --coverage --detectOpenHandles",
"test-watch": "jest --watchAll --verbose --coverage",
"lint": "eslint '**/*.js'",
"lint-fix": "eslint --fix '**/*.js'",
"jsdoc": "jsdoc -c ./docs/config/jsdoc.config.json"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"express": "^4.17.1",
"jest": "^24.8.0",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"pgtest": "^0.2.3",
"supertest": "^4.0.2",
"swagger": "^0.7.5",
"swagger-ui-express": "^4.0.6"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"endOfLine": "lf"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC"
}