-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 862 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
{
"name": "adopt-a-paw",
"version": "1.0.0",
"description": "Group project - Adpot-A-paw",
"main": "index.js",
"scripts": {
"server": "cd server && npm run watch",
"start": "node server/server.js --ignore client",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"client": "cd client && npm start",
"install": "cd server && npm install && cd ../client && npm install",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"keywords": [
"MERN",
"with",
"graphql"
],
"author": "alux, furk, isaiah",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint-plugin-react-refresh": "^0.4.5",
"jsonwebtoken": "^9.0.2"
}
}