forked from enbliq/SkillSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "timelycapsule-services",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"handlebars": "^4.7.8",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.5",
"nodemailer": "^6.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"uuid": "^11.0.5",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"jest": "^29.0.0",
"mongodb-memory-server": "^10.1.4",
"ts-jest": "^29.0.0",
"typescript-eslint": "^8.21.0"
}
}