-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.13 KB
/
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": "jjr-bookstore-project",
"version": "1.0.0",
"description": "",
"author": "Julianne Waters, Rebecca Lehew & Jennifer Engle",
"license": "",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js --ignore client",
"develop": "concurrently \"cd server && npm run watch\" \"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"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@chakra-ui/theme": "^3.1.1",
"@chakra-ui/theme-tools": "^2.0.17",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"apollo-server-express": "^2.15.0",
"dotenv": "^16.0.3",
"framer-motion": "^10.12.12",
"graphql": "^15.8.0",
"mongodb": "3.6",
"node": "^20.1.0",
"react-icons": "^4.8.0",
"react-slick": "^0.29.0"
}
}