-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 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
65
66
{
"name": "blogging-api",
"version": "1.0.0",
"description": "### 1. **Overview**",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./src/index.ts",
"start": "cross-env NODE_ENV=production node ./dist/iondex.js",
"build": "tsc -b",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.6.2",
"prisma": "^5.19.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@types/bcrypt": "^5.0.2",
"@types/eslint__js": "^8.42.3",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}