-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "alephium-nft",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:contracts": "jest -i --config ./configs/jest-contracts.config.ts",
"deploy:contracts": "node scripts/deploy.js"
},
"dependencies": {
"@alephium/web3": "0.2.0-rc.4",
"@alephium/sdk": "0.0.13",
"@h0ngcha0/get-alephium": "0.0.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"axios": "^0.26.0",
"better-sqlite3": "^7.5.3",
"bs58": "^5.0.0",
"daisyui": "^2.15.4",
"ipfs-http-client": "^57.0.3",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"usehooks-ts": "^2.5.4",
"whatwg-url": "^11.0.0"
},
"devDependencies": {
"@types/node": "17.0.40",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"jest": "^28.1.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.3",
"typescript": "4.7.3"
}
}