-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.21 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.21 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
{
"name": "pixelproof",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --experimental-https",
"build": "next build --turbopack",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"compile": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat compile",
"test:contracts": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat test",
"deploy:moonbeam": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/deploy.ts --network moonbeam",
"deploy:testnet": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/deploy.ts --network moonbeamTestnet",
"verify": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat verify --network moonbeam"
},
"dependencies": {
"@apillon/sdk": "^3.12.0",
"@apillon/wallet-react": "^3.0.3",
"@apillon/wallet-sdk": "^3.0.3",
"@openzeppelin/contracts": "^5.4.0",
"@polkadot/extension-inject": "^0.62.6",
"@polkadot/types": "^16.5.3",
"@polkadot/util-crypto": "^13.5.9",
"@stripe/stripe-js": "^8.5.3",
"dotenv": "^17.2.3",
"ethers": "^6.13.0",
"jose": "^6.1.3",
"lucide-react": "^0.555.0",
"next": "15.5.7",
"react": "19.2.0",
"react-dom": "19.2.0",
"stripe": "^20.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.2",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.10",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"chai": "^4.5.0",
"hardhat": "^2.27.1",
"hardhat-gas-reporter": "^1.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"solidity-coverage": "^0.8.16",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3"
}
}