-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
{
"name": "drive-rental-control",
"version": "1.0.0",
"description": "Vehicle Rental and Management",
"main": "src/application/server.ts",
"scripts": {
"build": "npx -y tsc",
"prestart": "npm run db:reset",
"start": "node ./build/application/server.js",
"dev": "NODE_ENV=test ts-node-dev --respawn --transpile-only ./src/application/server.ts",
"test": "jest --coverage --verbose --detectOpenHandles --forceExit --runInBand",
"lint": "eslint . --ext .ts",
"db:drop": "npx sequelize-cli db:drop",
"db:create": "npx sequelize-cli db:create",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"db:reset": "npm run build && npm run db:drop && npm run db:create && npm run db:migrate && npm run db:seed"
},
"keywords": [],
"author": "Gabriel Coruja",
"license": "ISC",
"dependencies": {
"express": "4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"mysql2": "^3.7.0",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-editorconfig": "4.0.3",
"eslint-plugin-sonarjs": "0.23.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.3.3"
}
}