-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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": "back",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"postinstall": "patch-package",
"prepare": "husky || true",
"lint": "eslint src",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"dependencies": {
"@ai-sdk/openai": "^1.1.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@zodyac/zod-mongoose": "^3.0.0",
"ai": "^4.1.4",
"axios": "^1.7.7",
"bcrypt": "5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"express-zod-safe": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.2",
"pino-http": "^10.3.0",
"zod": "^3.23.8",
"patch-package": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@eslint/js": "^9.15.0",
"commitizen": "^4.3.1",
"copyfiles": "^2.4.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"inquirer": "9",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.15.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write"
]
}
}