-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "folklof-project",
"version": "1.0.0",
"description": "folklof-project",
"main": "dist/app.js",
"scripts": {
"start": "node ./dist/app.js",
"build": "tsc -p .",
"dev": "concurrently \"npx tsc --watch\" \"nodemon dist/app.js",
"test": "mocha --check-leaks -r ts-node/register __test__/**/*.spec.ts",
"dev:mac": "concurrently \"npx tsc --watch\" \"nodemon dist/app.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"aws-sdk": "^2.1520.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.6.5",
"node-cache": "^5.1.2",
"openai": "^4.20.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-session": "^1.17.10",
"@types/morgan": "^1.9.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.8.2",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.14",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"prisma": "^5.7.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}