-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
{
"scripts": {
"build": "webpack",
"build:prod": "npm run netlify-setup && npm run build:worker && npm run build",
"watch": "webpack serve",
"netlify-setup": "sed -i s@FORWARD_URL@$BACKEND@g netlify.toml",
"build:cli": "npm run build:cli:js && npm run build:cli:pkg",
"build:cli:js": "esbuild src/cli/index.ts --bundle --outfile=cli/index.js --platform=node",
"build:cli:pkg": "pkg -t latest-linux,latest-win,latest-macos cli/index.js -o ./cli/mineral --options no-warnings",
"build:worker": "esbuild src/worker.ts --bundle --outfile=public/worker.js"
},
"dependencies": {
"@mysten/dapp-kit": "^0.14.38",
"@mysten/sui": "^1.15.0",
"@noble/hashes": "^1.4.0",
"@tanstack/react-query": "^5.59.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"css-loader": "^7.1.2",
"elm": "^0.19.1-3",
"elm-webpack-loader": "^8.0.0",
"numbro": "^2.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"elm-reloader": "^1.0.0",
"esbuild": "^0.24.0",
"html-webpack-plugin": "^5.6.3",
"pkg": "^5.8.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-dev-server": "^5.0.4",
"webpack-virtual-modules": "^0.6.2"
}
}