-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "api-sky",
"version": "0.0.1",
"description": "API RESTful SKY",
"main": "src/server.js",
"license": "MIT",
"keywords": [
"api",
"restful",
"sky"
],
"repository": {
"type": "git",
"url": "https://github.com/caioagiani"
},
"author": {
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/caioagiani"
},
"scripts": {
"start": "node src/server.js",
"dev:start": "nodemon -r dotenv/config src/server.js --ignore tests",
"test": "jest --setupFiles dotenv/config --detectOpenHandles --forceExit",
"test:clear": "jest --clearCache"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.15",
"yup": "^0.29.3"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}