-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "backend-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --fix --ext .ts",
"format": "prettier --write .",
"start": "node dist/main/server.js",
"dev": "nodemon --exec ts-node src/main/server.ts",
"build": "tsc",
"migrate": "ts-node src/infra/database/migrate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itujo/backend-challenge.git"
},
"author": "Ronaldo Junior",
"license": "ISC",
"bugs": {
"url": "https://github.com/itujo/backend-challenge/issues"
},
"homepage": "https://github.com/itujo/backend-challenge#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"drizzle-kit": "^0.20.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"argon2": "^0.31.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.1",
"env-var": "^7.4.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.3",
"reflect-metadata": "^0.2.1",
"resend": "^2.0.0",
"zod": "^3.22.4"
}
}