-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 940 Bytes
/
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
{
"name": "url-shortener-be",
"version": "1.0.0",
"description": "Backend of URL Shortener using Express and TypeScript",
"main": "index.ts",
"scripts": {
"dev": "npx nodemon index.ts",
"test": "jest -i --runTestsByPath",
"ci-build": "npx tsc"
},
"author": "Ananda & Hemas",
"license": "GPL-3.0-or-later",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.4",
"nodemailer": "^6.9.8"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.8",
"@types/nodemailer": "^6.4.14",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
}