-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.13 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
{
"name": "AnonymousComplaintApp",
"version": "4.13.1",
"description": "Semaphore Hardhat + Next.js + SemaphoreEthers template.",
"license": "Unlicense",
"files": [
"files.tgz",
".editorconfig",
".env.example",
".prettierignore",
".prettierrc.json",
"README.md"
],
"scripts": {
"dev": "yarn workspaces foreach -A -pi run dev",
"dev:web-app": "yarn workspace monorepo-ethers-web-app dev",
"dev:contracts": "yarn workspace monorepo-ethers-contracts dev",
"lint": "yarn workspaces foreach -A -pi run lint",
"prettier": "prettier -c . && yarn workspaces foreach -A -pi run prettier",
"prettier:write": "prettier -w . && yarn workspaces foreach -A -pi run prettier:write",
"init": "yarn install && yarn workspace monorepo-ethers-contracts run init && yarn workspace monorepo-ethers-web-app run init"
},
"workspaces": [
"apps/*"
],
"packageManager": "yarn@4.1.0",
"devDependencies": {
"prettier": "^3.2.5"
},
"dependencies": {
"@semaphore-protocol/proof": "^4.13.1"
}
}