-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "brasil-university-list",
"version": "1.0.0",
"description": "Provides a search endpoint you can search for universities of Brazil",
"main": "index.js",
"author": "João Pedro de Freitas Brito",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=devlopment nodemon index.js ",
"start": "node index.js ",
"test": "cross-env NODE_ENV=test jest --coverage --no-cache ",
"test:watch": "test -- --watch",
"lint": "standard | snazzy",
"lint:fix": "standard --fix"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.12.13",
"mongoose-paginate": "^5.0.3",
"require-dir": "^1.2.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"axios": "^0.21.1",
"chai": "^4.3.4",
"chai-exclude": "^2.0.3",
"cross-env": "^7.0.3",
"jest-cli": "^27.0.4",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"supertest": "^6.1.3"
}
}