-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2 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
59
60
61
62
63
64
{
"name": "api-codedivers",
"version": "1.0.0",
"description": "<div align=\"center\"> <a href=\"https://github.com/Jbarezzi/Node-Express-TS-Template\"> <img src=\"https://cdn-icons-png.flaticon.com/512/5968/5968381.png\" alt=\"TypeScriptLogo\" width=\"100\"> </a>",
"main": "./src/server.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test jest -i",
"build": "tsc && npx prisma generate && npx prisma migrate deploy",
"start": "npx prisma generate && npx prisma migrate deploy && node ./dist/src/server.js",
"dev": "NODE_ENV=dev nodemon ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarlonGomes/API-CodeDivers.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DarlonGomes/API-CodeDivers/issues"
},
"homepage": "https://github.com/DarlonGomes/API-CodeDivers#readme",
"dependencies": {
"@prisma/client": "^4.3.1",
"@sendgrid/mail": "^7.7.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"dotenv-cli": "^6.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}