-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.31 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.31 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "taskipline-backend",
"version": "1.0.0",
"description": "Backend service for taskipline",
"keywords": [
"backend",
"nodejs",
"mongodb",
"express",
"typescript",
"taskipline",
"api",
"restful",
"swagger",
"zod",
"winston",
"eslint",
"nodemon",
"helmet",
"cors",
"body-parser",
"cookie-parser",
"swagger-jsdoc"
],
"homepage": "https://github.com/Taskipline/backend#readme",
"bugs": {
"url": "https://github.com/Taskipline/backend/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Taskipline/backend.git"
},
"license": "ISC",
"author": {
"name": "Ayomide Emmanuel Akintan",
"email": "emzyakints2005@gmail.com",
"url": "https://github.com/Emmy-Akintz"
},
"lint-staged": {
"*.ts": "npm run lint:fix"
},
"type": "commonjs",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "nodemon index.ts",
"start": "node dist/index.js",
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.ts\" --cache",
"lint:fix": "eslint \"src/**/*.ts\" --cache --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.0",
"morgan": "^1.10.0",
"resend": "^6.0.2",
"rimraf": "^6.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
}
}