-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.81 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
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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "yodh",
"version": "2.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"start": "next start",
"export": "next export",
"build": "next build",
"devnet:build": "NEXT_PUBLIC_NETWORK=devnet next build",
"testnet:build": "NEXT_PUBLIC_NETWORK=testnet next build",
"mainnet:build": "NEXT_PUBLIC_NETWORK=mainnet next build",
"compile": "npx --yes @alephium/cli@latest compile",
"deploy": "npm run devnet:deploy",
"devnet:deploy": "npx --yes @alephium/cli@latest deploy -n devnet",
"testnet:deploy": "npx --yes @alephium/cli@latest deploy -n testnet",
"mainnet:deploy": "npx --yes @alephium/cli@latest deploy -n mainnet",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest -i --config ./jest-config.json",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSameLine": false,
"trailingComma": "none"
},
"dependencies": {
"@alephium/web3": "^1.8.3",
"@alephium/web3-react": "^1.7.3",
"@alephium/web3-wallet": "^1.8.3",
"@alph-name-service/ans-sdk": "^0.1.0",
"@react-pdf/renderer": "^3.4.4",
"coingecko-api-v3": "^0.0.29",
"detect-browser": "^5.3.0",
"eslint-config-next": "13.1.4",
"framer-motion": "^6.3.11",
"js-sha256": "^0.11.0",
"next": "^14.2.13",
"next-qrcode": "^2.5.1",
"qrcode": "^1.5.4",
"qrcode.react": "^4.0.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^5.3.0",
"react-modal": "^3.16.1",
"react-select": "^5.8.0",
"react-spinners": "^0.14.1",
"react-tooltip": "^5.28.0",
"react-transition-state": "^1.1.4",
"react-use-measure": "^2.1.1",
"resize-observer-polyfill": "^1.5.1",
"store2": "^2.14.3",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@alephium/cli": "^1.8.3",
"@alephium/web3-test": "^1.8.3",
"@iconify/react": "^5.0.2",
"@types/jest": "^27.5.1",
"@types/node": "18.11.18",
"@types/qrcode": "^1.5.5",
"@types/react": "18.0.27",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "18.0.10",
"@types/react-modal": "^3.16.3",
"@types/store": "^2.0.5",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"dotenv": "^16.4.5",
"encoding": "^0.1.13",
"eslint": "8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=14.0.0 <20.0.0",
"npm": ">=7.0.0"
}
}