-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
{
"name": "stellar-laboratory",
"version": "0.1.0",
"author": "Stellar Development Foundation <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "tsc --noEmit",
"install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet yarn.lock && yarn install || exit 0",
"prepare": "husky",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint:ts && yarn test"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@creit.tech/stellar-wallets-kit": "^0.8.2",
"@ledgerhq/hw-app-str": "^6.28.6",
"@ledgerhq/hw-transport-webusb": "^6.28.6",
"@stellar/design-system": "^2.0.0-beta.15",
"@stellar/stellar-sdk": "12.2.0",
"@stellar/stellar-xdr-json-web": "^0.0.1",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-query-devtools": "^5.45.1",
"@trezor/connect": "9.x.x",
"@trezor/connect-plugin-stellar": "^9.0.3",
"@trezor/connect-web": "^9.2.2",
"@types/chart.js": "^2.9.41",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.0.0",
"axios": "^1.7.3",
"bignumber.js": "^9.1.2",
"chart.js": "^4.4.3",
"dompurify": "^3.1.2",
"html-react-parser": "^5.1.10",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lossless-json": "^4.0.1",
"next": "14.2.11",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"tslib": "^2.6.2",
"zustand": "^4.5.2",
"zustand-querystring": "^0.0.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.4",
"@stellar/tsconfig": "^1.0.2",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"sass": "^1.77.5",
"typescript": "^5.4.5"
}
}