-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
44 lines (44 loc) · 1.65 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
44
{
"license": "MIT",
"private": true,
"contributors": [
"Kim Hamilton Duffy (https://github.com/kimdhamilton)",
"Sean Neville (https://github.com/psnevio)",
"Brice Stacey <brice@m2.xyz> (https://m2.xyz)",
"Matt Venables <matt@m2.xyz> (https://m2.xyz)"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "npm run build -w verite -w e2e-demo",
"build:verite": "npm run build --workspace verite",
"check": "run-s type-check lint test",
"clean": "npm run clean --workspaces --if-present",
"db:migrate": "npm run db:migrate --workspace e2e-demo",
"db:reset": "npm run db:reset --workspace e2e-demo",
"db:seed": "npm run db:seed --workspace e2e-demo",
"db:studio": "npm run db:studio --workspace e2e-demo",
"dev": "run-p \"dev -w verite\" \"dev -w e2e-demo\" \"dev -w docs\"",
"hardhat:node": "npm run hardhat:node --workspace contract",
"hardhat:deploy": "npm run hardhat:deploy --workspace contract",
"hardhat:test": "npm run hardhat:test --workspace contract",
"hardhat:faucet": "npm run hardhat:faucet --workspace contract",
"format": "npm run format --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prepare": "npm run build:verite",
"prisma": "npx -w e2e-demo prisma",
"setup": "./bin/setup",
"start": "npm run start --workspace e2e-demo",
"test": "npm test --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"wallet": "npm run build:verite; npm start -w wallet"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}