-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 994 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
{
"name": "e-commerce",
"version": "1.0.0",
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 1",
"startNode": "node app.js",
"devNode": "nodemon -r dotenv/config app.js",
"reset-database": "node -r dotenv/config db/scripts/reset-database.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"add": "^2.0.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"framer-motion": "^11.1.7",
"next": "^14.1.4",
"pg": "^8.11.4",
"react-range-slider-input": "^3.0.7",
"react-responsive-carousel": "^3.2.23"
},
"devDependencies": {
"eslint": "^9.1.1"
}
}