-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 854 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
{
"name": "mern-shopping",
"version": "1.0.0",
"description": "",
"engines": {
"node": "18.x",
"npm": "8.x"
},
"main": "server/server.js",
"scripts": {
"start": "cd server && npm run start",
"develop": "concurrently \"cd server && npm run start\" \"cd client && npm start\"",
"dev": "concurrently \"cd server && npm run start\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.1.0"
},
"dependencies": {
"bootstrap": "^5.2.3",
"graphql": "^16.6.0",
"moment": "^2.29.4",
"ra-data-graphql": "^4.11.0",
"react-bootstrap": "^2.7.4",
"react-calendar": "^4.2.1"
}
}