-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "Auth-Module",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/nashaat10/Auth-Module.git",
"author": "nashaat10 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "npm run build && node dist/index.js",
"test": "npm run build && jasmine",
"migration:run": "db-migrate up"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"eslint": "^9.9.0",
"jasmine": "^5.2.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/jasmine": "^5.1.4",
"@types/morgan": "^1.9.9",
"bcrypt": "^5.1.1",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.12.0"
}
}