-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 865 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
{
"name": "baboonz",
"version": "1.0.0",
"description": "build your squad around a treasury",
"main": "server/index.js",
"homepage": ".",
"engines": {
"node": "16.x"
},
"scripts": {
"client:install": "cd client && yarn",
"client": "cd client && yarn start",
"server": "node server",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server",
"heroku-postbuild": "cd client/ && yarn && yarn install --production && yarn build"
},
"author": "yanis_mezn",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^1.35.4",
"coingecko-api": "^1.0.10",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"express": "^4.18.1",
"history": "^5.3.0",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.2"
}
}