-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 903 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 903 Bytes
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
{
"private": true,
"version": "0.1.0",
"license": "MIT",
"workspaces": [
"contracts",
"app"
],
"scripts": {
"compile": "yarn workspace my-contracts compile",
"deploy": "yarn workspace my-contracts deploy",
"build:contracts": "yarn workspace my-contracts build",
"dev": "NODE_ENV=development yarn workspace my-dapp dev",
"start": "yarn workspace my-dapp start",
"build:app": "yarn workspace my-dapp build"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"dependencies": {
"@alephium/web3": "^2.0.8",
"autoprefixer": "^10.4.20",
"next": "^16.1.1",
"next-themes": "^0.4.4",
"postcss": "^8.5.1",
"react-confetti": "^6.2.2",
"react-hot-toast": "^2.5.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16"
}
}