-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "central-auth-service",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/pratimsadhu/central-auth-service.git",
"author": "Pratim Sadhu <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "jest --inspect-brk --runInBand",
"dev": "nodemon --exec ts-node dev.ts"
},
"devDependencies": {
"@types/argon2": "^0.15.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.9",
"@types/supertest": "^6.0.2",
"consola": "^3.4.0",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"apollo-server-core": "^3.13.0",
"apollo-server-express": "^3.13.0",
"argon2": "^0.41.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"graphql": "^16.10.0",
"jsonwebtoken": "^9.0.2"
}
}