-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "tech-challenge-fase1",
"version": "1.0.0",
"description": "",
"engines": {
"node": "=16.0.0"
},
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"start": "npx ts-node src/adapter/driver/server.ts",
"dev": "npx nodemon src/adapter/driver/server.ts",
"lint": "npx eslint src --ext .ts",
"lint:fix": "npx eslint src --ext .ts --fix"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/knex": "^0.16.1",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.3.0"
},
"dependencies": {
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql2": "^3.9.7",
"pino": "^9.1.0",
"uuid": "^9.0.1"
}
}