-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "y",
"version": "1.0.0",
"description": "API to Boticario's resellers",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/main.js",
"start dev": "node dist/main.js",
"test": "ts-node src/jest.startup.ts"
},
"author": "Diego Lemos Padilha",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "src/tests/coverage",
"collectCoverageFrom": [
"src/**"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"address": "http://localhost:3001",
"auth": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhZG1pbkBlbWFpbC5jb20iLCJpc3MiOiJyZXNlbGxlcnMtYm90LWFwaSIsImlhdCI6MTU4NzgyNTU2Mn0.3qUDSB9_IqeguHBXzkVWgBkRgxYTu2gZxUoD3O_jdF8"
}
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.12",
"@types/node": "^13.13.0",
"@types/restify": "^8.4.2",
"@types/restify-errors": "^4.3.3",
"@types/supertest": "^2.0.8",
"jest-cli": "^25.4.0",
"nodemon": "^2.0.3",
"ts-node": "^8.9.0"
},
"dependencies": {
"bcrypt": "^4.0.1",
"jest": "^25.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.9",
"pm2": "^4.3.1",
"request": "^2.88.2",
"restify": "^8.5.1",
"restify-errors": "^8.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}