-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "node-auth-template",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"@sentry/node": "^7.74.1",
"@sentry/profiling-node": "^1.2.1",
"argon2": "^0.31.1",
"axios": "^1.5.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.0.0",
"joi": "^17.11.0",
"jose": "^4.15.4",
"libphonenumber-js": "^1.10.48",
"prisma": "^5.4.2",
"qs": "^6.11.2",
"unique-username-generator": "^1.2.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node ./index.ts",
"start": "cross-env NODE_ENV=production ts-node ./index.ts",
"gen": "ts-node utils/generateKeyPair.ts"
}
}