-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "b2w-bit-planets",
"version": "1.0.0",
"description": "API RESTful de planetas de Star Wars, feita para um desafio back-end da B2W BIT",
"main": "src/index.js",
"repository": "https://github.com/vitorhnn/b2w-bit-planets",
"author": "Victor Hermann Chiletto",
"license": "MIT",
"scripts": {
"start": "node src/index.js",
"lint": "eslint --ignore-path .gitignore .",
"lint:formatting": "prettier --list-different \"src/**/*.js\"",
"format": "prettier --write \"src/**/*.js\"",
"watch": "nodemon src/index.js",
"debug": "node --inspect-brk=0.0.0.0 src/index.js",
"test": "jest"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"mongoose": "^5.8.7",
"node-fetch": "^2.6.1",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"jest": "^24.9.0",
"mockingoose": "^2.13.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"coverageDirectory": "coverage",
"testEnvironment": "node",
"collectCoverageFrom": [
"**/*.js"
]
}
}