-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.47 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
{
"name": "cbdc-purpose-bound-money",
"version": "1.0.0",
"description": "Purpose Bound Money (PBM) in Project Orchid is a protocol to specify conditions for the use of digital money.",
"repository": "https://github.com/superical/cbdc-purpose-bound-money.git",
"author": {
"name": "Seth",
"url": "https://github.com/superical"
},
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react",
"**/react/**",
"**/react-dom",
"**/react-dom/**",
"**/next"
]
},
"private": true,
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"scripts": {
"build:app": "yarn workspace @pbm/app build",
"start:app": "yarn workspace @pbm/app start",
"start:app:dev": "yarn workspace @pbm/app dev",
"build:web": "yarn workspace @pbm/web build",
"start:web": "yarn workspace @pbm/web start",
"start:web:dev": "yarn workspace @pbm/web dev",
"build:contracts": "yarn workspace @pbm/contracts typechain && yarn workspace @pbm/contracts build:release",
"test:contracts": "yarn workspace @pbm/contracts test",
"test:contracts:automation": "yarn workspace @pbm/contracts test:automation",
"test:contracts:all": "yarn workspace @pbm/contracts test:all",
"test:contracts:coverage": "yarn workspace @pbm/contracts coverage",
"test:contracts:watch": "yarn workspace @pbm/contracts test:watch",
"hardhat": "yarn workspace @pbm/contracts hardhat"
}
}