-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.11 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 3.11 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "achievo",
"version": "1.0.0",
"description": "Achievo monorepo for verifiable programs, proofs, validations, exports, and public verification",
"type": "module",
"main": "index.js",
"scripts": {
"node": "hardhat node",
"compile": "hardhat compile",
"clean": "hardhat clean",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"deploy:base-sepolia": "hardhat run scripts/deploy.ts --network baseSepolia",
"deploy:v11:base-sepolia": "hardhat run scripts/deployV11.ts --network baseSepolia",
"deploy:governance:base-sepolia": "hardhat run scripts/deploy-governance.ts --network baseSepolia",
"deploy:org-registry:base-sepolia": "hardhat run scripts/deploy-org-registry.ts --network baseSepolia",
"deploy:username-registry:base-sepolia": "hardhat run scripts/deployUsernameRegistryV1.ts --network baseSepolia",
"export:abi": "node scripts/export-abi.mjs",
"mint:base-sepolia": "hardhat run scripts/mintExample.ts --network baseSepolia",
"web:dev": "npm --prefix web run dev",
"web:build": "npm --prefix web run build",
"web:start": "npm --prefix web run start",
"admin:dev": "npm --prefix apps/admin run dev",
"admin:build": "npm --prefix apps/admin run build",
"admin:start": "npm --prefix apps/admin run start",
"console:local": "hardhat console --network localhost",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run format:check && npm --prefix web run lint && npm --prefix apps/admin run lint",
"typecheck": "npm --prefix backend run typecheck && npm --prefix web run typecheck && npm --prefix apps/admin run typecheck",
"test:contracts": "hardhat test",
"test:unit": "npm --prefix backend run test:unit && npm run test:contracts",
"test:integration": "npm --prefix backend run test:integration",
"test:e2e": "npm --prefix backend run test:e2e",
"test:e2e:web": "npm --prefix web run test:e2e",
"smoke:test": "node scripts/smoke-test.mjs",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"build": "npm run compile && npm --prefix backend run build && npm --prefix web run build && npm --prefix apps/admin run build",
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build",
"prepare": "husky",
"secret:scan": "node scripts/secret-scan.mjs"
},
"keywords": [],
"author": "Emiloart",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@nomicfoundation/hardhat-ethers": "4.0.7",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "3.0.3",
"@openzeppelin/contracts": "^5.0.2",
"@types/node": "^22.19.17",
"ethers": "6.15.0",
"hardhat": "3.3.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.3.3",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,ts,tsx,json,md,mdx,yml,yaml,css,scss}": "prettier --write",
"web/**/*.{js,jsx,ts,tsx}": "node scripts/run-eslint.mjs"
},
"dependencies": {
"viem": "^2.41.2"
},
"engines": {
"node": ">=20.11.1 <23"
}
}