-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "emotional-support-butterflies",
"version": "1.0.0",
"description": "Boosting Positivity for those that need it. We are building a webpage that allows users to provide support for medical providers by sending virtual butterflies.",
"private": true,
"engines": {
"node": "13.8.0",
"npm": "6.14.4"
},
"dependencies": {
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.1",
"axios": "^0.19.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"reactstrap": "^8.4.1",
"socket.io-client": "^2.3.0"
},
"main": "./server/app.js",
"scripts": {
"build": "react-scripts build",
"install-client": "cd client; npm install",
"install-server": "cd server; npm install",
"install": "npm run install-client; npm run install-server",
"heroku-postbuild": "cd client && npm install && npm run build",
"start":"node server/app.js",
"react": "react-scripts start",
"start-client": "cd client; npm run react",
"start-server": "PORT=4001; cd server; npm start",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karuna24s/emotional-support-butterflies.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/karuna24s/emotional-support-butterflies/issues"
},
"homepage": "https://github.com/karuna24s/emotional-support-butterflies#readme",
"devDependencies": {
"concurrently": "^5.1.0",
"npm-run-all": "^4.1.5"
}
}