-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
36
37
38
39
{
"name": "project-3",
"version": "1.0.0",
"description": "A repository for Project 3, an online farmer's market.",
"main": "server/server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "cd server && npm start",
"start:dev": "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",
"heroku-postbuild": "cd client && npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@chakra-ui/gatsby-plugin": "^2.0.0",
"@chakra-ui/react": "^1.6.1",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@reduxjs/toolkit": "^1.5.1",
"framer-motion": "^4.1.13",
"graphql": "^15.5.0",
"if-env": "^1.0.4",
"nodemon": "^2.0.7",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0"
},
"devDependencies": {
"concurrently": "^6.1.0",
"redux-devtools": "^3.7.0"
},
"keywords": [
"react",
"redux",
"chakra"
]
}