-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
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
{
"name": "stacks-swaps",
"version": "0.0.1",
"description": "Swapping BTC for tokens on the Stacks chain",
"author": "Friedger Müffke",
"contributors": [
{
"name": "Friedger Müffke",
"email": "[email protected]",
"url": "https://friedger.de/"
}
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/friedger/stacks-swaps.git"
},
"dependencies": {
"@bitauth/libauth": "^1.19.1",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@micro-stacks/client": "1.0.0-beta.6",
"@micro-stacks/react": "1.0.0-beta.9",
"@noble/hashes": "^1.1.2",
"@reach/router": "^1.3.4",
"@stacks/blockchain-api-client": "^4.0.4",
"bitcoinjs-lib": "^6.0.1",
"bn.js": "^5.2.0",
"buffer": "^6.0.3",
"buffer-reverse": "^1.0.1",
"c32check": "^1.1.3",
"crypto-js": "^4.1.1",
"jotai": "^1.5.3",
"lodash.groupby": "^4.6.0",
"merkletreejs": "0.2.27",
"micro-stacks": "0.6.1",
"number-to-words": "git+https://github.com/OmgImAlexis/number-to-words.git",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-download-link": "^2.3.0",
"react-input-switch": "^2.2.2",
"react-jdenticon": "^0.0.9",
"react-router-dom": "^6.2.1"
},
"prettier": "@stacks/prettier-config",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:prettier:fix": "prettier --write \"src/**/*.{js,jsx}\""
},
"eslintConfig": {
"extends": "react-app",
"env": {
"es2020": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <= 99",
"not android <= 4.4.4"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@popperjs/core": "2.11.2",
"@stacks/prettier-config": "^0.0.10",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@vitejs/plugin-react": "^1.3.2",
"bootstrap": "5.0.2",
"postcss-normalize": "^10.0.1",
"prettier": "^2.7.1",
"react-scripts": "^4.0.3",
"react-test-renderer": "^17.0.2",
"vite": "^2.9.13"
}
}