-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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": "fit-track-server",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "tsc --noEmit && ts-node-dev --respawn --exit-child --transpile-only --ignore-watch node_modules --clear src/app.ts",
"start": "node dist/src/app.js",
"prepare": "husky install",
"build": "tsc",
"pre-commit": "lint-staged",
"vercel-build": "npx prisma migrate deploy"
},
"prisma": {
"seed": "ts-node-dev prisma/seed.ts"
},
"keywords": [],
"author": "Jean Carlos",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.433.0",
"@prisma/client": "^5.7.0",
"axios": "^1.2.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node-cron": "^3.0.3",
"oracledb": "^6.3.0",
"useragent": "^2.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.2",
"@types/node": "^18.11.12",
"@types/node-cron": "^3.0.6",
"@types/oracledb": "^6.0.4",
"@types/useragent": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^7.2.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prisma": "^5.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
}
}