-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "@assistants-center/identity",
"description": "Identity microservice for Assistants' Center",
"private": true,
"scripts": {
"start-dev": " export CURL_CA_BUNDLE=\"/etc/ssl/cert.pem\" && nodemon --exec ts-node src/app.ts",
"start": "tsc && node dist/app.js"
},
"keywords": [],
"author": "Assistants' Center",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/multipart": "^7.6.0",
"@fastify/session": "^10.3.0",
"axios": "^1.6.7",
"class-validator": "^0.14.0",
"connect-redis": "^7.1.0",
"discord-oauth2": "^2.11.0",
"dotenv": "^16.0.3",
"fastify": "^4.24.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.6.3",
"next": "^13.5.6",
"node-2fa": "^2.0.3",
"redis": "^4.6.7"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.3",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}