-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.76 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
{
"name": "context-switcher",
"version": "1.0.0",
"description": "A productivity-focused backend API for managing mental context switches with rituals, analytics, and focus tracking",
"main": "./dist/index",
"type": "commonjs",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node --env-file=.env dist/index",
"dev": "tsc-watch -p tsconfig.build.json --onSuccess \"pnpm start\"",
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint",
"lint:fix": "eslint --fix",
"migrate:dev": "node --env-file=.env script/migration.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [],
"author": "Sumit Singh Tomar",
"license": "MIT",
"lint-staged": {
"*.ts": [
"pnpm run lint:fix",
"pnpm run format:fix"
]
},
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mailgen": "^2.0.7",
"@types/multer": "^2.1.0",
"@types/node": "^25.2.3",
"@types/nodemailer": "^7.0.11",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/ui": "^4.1.7",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"mongodb-memory-server": "^11.1.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"cloudinary": "^2.9.0",
"colorette": "^2.0.20",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mailgen": "^2.0.32",
"mongoose": "^9.2.1",
"multer": "^2.1.1",
"nodemailer": "^8.0.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"rate-limiter-flexible": "^10.0.1",
"source-map-support": "^0.5.21",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"ts-migrate-mongoose": "^5.2.0",
"winston": "^3.19.0",
"winston-mongodb": "^7.0.1",
"zod": "^4.3.6"
}
}