-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "react-coinmarketcap-app",
"version": "1.0.0",
"description": "react coinmarketcap app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"client": "cd client && npm start",
"dev": "concurrently -n 'server,client' -c 'red,green' \"nodemon server.js\" \"npm run client\"",
"render": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm run install-client && npm run build",
"render-postbuild": "NPM_CONFIG_PRODUCTION=false npm run install-client && npm run build"
},
"proxy": "http://localhost:5000",
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"concurrently": "^7.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"env-cmd": "^10.1.0",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.3.5",
"node-cache": "^5.1.2",
"node-fetch": "^3.2.10",
"nodemon": "^2.0.16",
"path": "^0.12.7"
},
"engines": {
"node": "16.6"
},
"homepage": "https://react-cmc.herokuapp.com/"
}