-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 912 Bytes
/
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
{
"name": "meat-api",
"version": "1.0.0",
"description": "API restaurantes",
"main": "index.js",
"scripts": {
"test": "ts-node jest.startup.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"globals": {
"address": "http://localhost:3001"
},
"testEnvironment": "node",
"preset": "ts-jest/presets/js-with-ts"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.7",
"bcrypt": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.9.0",
"restify": "^8.5.1",
"restify-errors": "8.0.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^25.1.2",
"@types/mongoose": "5.7.1",
"@types/restify": "^8.4.2",
"@types/supertest": "^2.0.8",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}