forked from maxhealy01/fit-club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1019 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
31
32
33
34
35
36
{
"name": "project_3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"apollo-server-express": "^2.22.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"concurrently": "^6.0.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mobx": "^6.1.8",
"mongoose": "^5.12.2",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"react-native": "^0.64.0",
"react-native-web": "^0.15.5",
"recharts": "^2.0.9",
"socket.io": "^4.0.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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": "ISC"
}