forked from zama-ai/fhevm-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.9 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.9 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fhevm-sdk-monorepo",
"version": "1.0.0",
"description": "Universal FHEVM SDK for building confidential dApps - Framework-agnostic with wagmi-like developer experience",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build:sdk && npm run build:examples",
"build:sdk": "cd packages/fhevm-sdk && npm run build",
"build:examples": "npm run build:nextjs",
"build:nextjs": "cd examples/nextjs-pollution-monitor && npm run build",
"dev": "concurrently \"npm run dev:sdk\" \"npm run dev:nextjs\"",
"dev:sdk": "cd packages/fhevm-sdk && npm run dev",
"dev:nextjs": "cd examples/nextjs-pollution-monitor && npm run dev",
"test": "npm run test:sdk && npm run test:contracts",
"test:sdk": "cd packages/fhevm-sdk && npm test",
"test:contracts": "hardhat test",
"test:coverage": "hardhat coverage",
"test:e2e": "cd examples/nextjs-pollution-monitor && npm run test:e2e",
"lint": "npm run lint:sdk && npm run lint:contracts && npm run lint:examples",
"lint:sdk": "cd packages/fhevm-sdk && npm run lint",
"lint:contracts": "solhint 'contracts/**/*.sol'",
"lint:examples": "cd examples/nextjs-pollution-monitor && npm run lint",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,sol}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,sol}'",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js --network sepolia",
"deploy:contracts": "npm run compile && npm run deploy",
"deploy:frontend": "cd examples/nextjs-pollution-monitor && vercel --prod",
"clean": "rm -rf node_modules packages/*/node_modules examples/*/node_modules artifacts cache typechain-types",
"postinstall": "npm run build:sdk"
},
"keywords": [
"fhevm",
"zama",
"encryption",
"privacy",
"confidential",
"sdk",
"react",
"vue",
"nextjs",
"blockchain",
"ethereum"
],
"author": "FHEVM SDK Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/node": "^20.0.0",
"chai": "^4.5.0",
"concurrently": "^8.2.0",
"ethers": "^6.9.0",
"hardhat": "2.22.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.0.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.3.0",
"solhint": "^4.5.0",
"solidity-coverage": "^0.8.0",
"typechain": "^8.3.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}