-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "alpha-wallet",
"version": "0.1.0",
"description": "Open Source Solana Wallet",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\""
},
"devDependencies": {
"assert": "^2.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"stream-browserify": "^3.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@metaplex-foundation/mpl-token-metadata": "^2.2.2",
"@project-serum/anchor": "^0.25.0",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.53.0",
"axios": "^0.27.2",
"bip39": "^3.0.4",
"bs58": "^5.0.0",
"crypto-js": "^4.1.1",
"ed25519-hd-key": "^1.3.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"browser": {
"fs": false,
"path": false,
"os": false
}
}