-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "dice",
"version": "0.1.0",
"private": true,
"description": "Decentralized Immutable Credential Ecosystem",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"lint": "pnpm -r lint",
"lintfix": "pnpm -r lintfix",
"prettify": "pnpm exec prettier . --write",
"format": "pnpm run prettify && pnpm run lintfix",
"pre-commit": "pnpm run lint",
"test": "pnpm -r test",
"contract:compile": "pnpm --filter @dice/contract compile",
"contract:deploy": "pnpm --filter @dice/contract local-deploy",
"webapp:dev": "pnpm --filter @dice/webapp dev",
"webapp:build": "pnpm --filter @dice/webapp build",
"webapp:start": "pnpm --filter @dice/webapp start",
"webapp:prisma:studio": "pnpm --filter @dice/webapp prisma:studio",
"webapp:prisma:migrate": "pnpm --filter @dice/webapp prisma:migrate",
"start:web": "pnpm run webapp:build && pnpm run webapp:start"
},
"workspaces": [
"./packages/*"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"husky": "^8.0.0",
"prettier": "3.1.1"
}
}