-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 823 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 823 Bytes
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
{
"name": "ecommerce",
"version": "1.0.0",
"description": "It is an ecommerce app ",
"main": "server.js",
"type": "module",
"scripts": {
"node": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix ./client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "CoffeeCoder",
"license": "ISC",
"dependencies": {
"antd": "^5.7.2",
"bcrypt": "^5.1.0",
"braintree": "^3.16.0",
"colors": "^1.4.0",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-formidable": "^1.2.0",
"jsonwebtoken": "^9.0.1",
"moment": "^2.29.4",
"mongoose": "^7.3.4",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"react-icons": "^4.10.1",
"slugify": "^1.6.6"
}
}