-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "smart-books",
"version": "1.0.0",
"description": "smart book suggestions",
"main": "app.js",
"engines": {
"node": "22.13.1"
},
"engineStrict": true,
"scripts": {
"test": "jest",
"dev": "nodemon src/app.ts",
"m:g": "ts-node ./node_modules/typeorm/cli.js migration:generate ./src/infrastructure/db/migrations/$npm_config_name -d ./src/infrastructure/db/ormconfig.ts",
"m:r": "ts-node ./node_modules/typeorm/cli.js migration:run -d ./src/infrastructure/db/ormconfig.ts",
"m:s": "ts-node ./node_modules/typeorm/cli.js migration:show -d ./src/infrastructure/db/ormconfig.ts",
"lint": "eslint 'src/**/*.{ts,tsx}' && tsc --noEmit",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'"
},
"nodemonConfig": {
"verbose": true,
"watch": "src/",
"delay": "1000",
"legacyWatch": true,
"restartable": "r",
"max_restarts": "5",
"env": {
"NODE_ENV": "debug",
"DB_HOST": "localhost",
"APP_PORT": 8000,
"DB_PORT": 5432,
"DB_USER": "omer",
"DB_PASS": "root",
"LLM_URL": "http://localhost:11434/api",
"FE_URL": "http://localhost:3000",
"APP_HOST": "0.0.0.0",
"SECRET_KEY": "very_secret"
},
"ext": "ts",
"execMap": {
"ts": "ts-node"
}
},
"author": "Omer Bilgin",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"typeorm": "^0.3.20",
"typeorm-naming-strategies": "^4.1.0",
"uuid": "^11.0.5",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.13.1",
"@types/uuid": "^10.0.0",
"eslint-prettier-personal-config-ob": "^0.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}