-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.36 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "node-oidc-provider-prisma-adapter",
"version": "1.0.0",
"description": "Node OIDC Provider with Prisma Adapter",
"keywords": [
"node",
"oidc",
"provider",
"prisma",
"adapter",
"typescript",
"express",
"jest",
"cockroachdb",
"postgresql",
"mysql",
"sqlite",
"oauth2",
"openid"
],
"homepage": "https://github.com/Mostafatalaat770/node-oidc-provider-prisma-adapter",
"repository": "Mostafatalaat770/node-oidc-provider-prisma-adapter",
"author": "Mostafa Abouzeid <[email protected]>",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "npx tsc",
"start": "node dist/main.js",
"dev": "concurrently \"npx tsc --watch \" \"nodemon -q --experimental-specifier-resolution=node dist/main.js\"",
"db:migrate": "npx prisma migrate dev --name init",
"db:studio": "npx prisma studio"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/oidc-provider": "^8.0.0",
"@types/uuid": "^9.0.0",
"concurrently": "^7.6.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"prisma": "^4.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@prisma/client": "^4.8.0",
"express": "^4.18.2",
"oidc-provider": "^8.0.0",
"uuid": "^9.0.0"
}
}