-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 862 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": "40-market",
"version": "1.0.0",
"description": "Market is our latest e-commerce platform that will allow users to browse and purchase a wide selection of products.",
"main": "server.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.0.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"prisma": "^6.0.1"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@faker-js/faker": "^9.3.0",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"nodemon": "^3.1.7"
}
}