-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.89 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.89 KB
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": "cent-social-index",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/dOrgTech/cent-social-index",
"author": "d0rg Tech",
"license": "UNLICENSED",
"private": true,
"scripts": {
"server:build": "yarn workspace @cent-social-index/server build",
"server:start": "yarn workspace @cent-social-index/server start",
"server:start:dev": "yarn workspace @cent-social-index/server start:dev",
"server:start:dev:dump": "yarn workspace @cent-social-index/server start:dev:dump",
"server:stop:dev": "yarn workspace @cent-social-index/server db:dev:stop",
"server:start:debug": "yarn workspace @cent-social-index/server star:debug",
"server:start:prod": "yarn workspace @cent-social-index/server start:prod",
"server:lint": "yarn workspace @cent-social-index/server lint",
"server:test": "yarn workspace @cent-social-index/server test",
"server:test:watch": "yarn workspace @cent-social-index/server test:watch",
"server:test:cov": "yarn workspace @cent-social-index/server test:cov",
"server:test:debug": "yarn workspace @cent-social-index/server test:debug",
"server:test:e2e": "yarn workspace @cent-social-index/server test:e2",
"server:db:dev:start": "yarn workspace @cent-social-index/server db:dev:start",
"server:db:dev:stop": "yarn workspace @cent-social-index/server db:dev:stop",
"client:start": "yarn workspace @cent-social-index/client start",
"client:start:dev": "yarn workspace @cent-social-index/client dev",
"client:build": "yarn workspace @cent-social-index/client build",
"client:lint": "yarn workspace @cent-social-index/client lint",
"client:test": "yarn workspace @cent-social-index/client test"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "16.14.0"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^0.1.0",
"ethers": "^5.6.5",
"wagmi": "^0.3.5"
}
}