-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "acquisitions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"imports": {
"#src/*": "./src/*",
"#config/*": "./src/config/*",
"#controllers/*": "./src/controllers/*",
"#middleware/*": "./src/middleware/*",
"#models/*": "./src/models/*",
"#routes/*": "./src/routes/*",
"#services/*": "./src/services/*",
"#utils/*": "./src/utils/*",
"#validations/*": "./src/validations/*"
},
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"dev:docker": "sh ./scripts/dev.sh",
"prod:docker": "docker-compose -f docker-compose.prod.yaml --env-file .env.prod up --build -d",
"test": "set NODE_OPTIONS=--experimental-vm-modules && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FedyBenMahfoudh/acquisitions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/FedyBenMahfoudh/acquisitions/issues"
},
"homepage": "https://github.com/FedyBenMahfoudh/acquisitions#readme",
"dependencies": {
"@arcjet/inspect": "^1.0.0-beta.11",
"@arcjet/node": "^1.0.0-beta.11",
"@neondatabase/serverless": "^1.0.1",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"winston": "^3.17.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"drizzle-kit": "^0.31.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"supertest": "^7.1.4"
}
}