-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 860 Bytes
/
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
{
"name": "vandyhacks-xi-rizzler",
"version": "1.0.0",
"type": "module",
"description": "Tinder-clone with AI abilities",
"main": "server/app.js",
"scripts": {
"prepare-demo": "node ./scripts/prepare-demo.js",
"start": "node ./run.js",
"dev": "nodemon ./run.js",
"test": "tests/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"eslint": "^9.11.1",
"nodemon": "^3.1.7"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-async-handler": "^1.2.0",
"mongoose": "^8.7.0",
"multer": "^1.4.5-lts.1",
"openai": "^4.65.0",
"uuid": "^10.0.0"
}
}