-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "stellar-laboratory",
"version": "0.1.0",
"author": "Stellar Development Foundation <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "export NEXT_PUBLIC_COMMIT_HASH=$(git rev-parse --short HEAD) && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "tsc --noEmit",
"test": "playwright test",
"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": {
"@creit.tech/stellar-wallets-kit": "^1.2.5",
"@ledgerhq/hw-app-str": "^7.0.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@stellar/design-system": "^2.0.0-beta.17",
"@stellar/stellar-sdk": "^13.0.0",
"@stellar/stellar-xdr-json": "^22.0.0-rc.1.1",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.0",
"@trezor/connect-plugin-stellar": "^9.0.6",
"@trezor/connect-web": "^9.4.4",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"bignumber.js": "^9.1.2",
"dompurify": "^3.1.7",
"html-react-parser": "^5.1.18",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lossless-json": "^4.0.2",
"next": "14.2.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.7.0",
"zustand": "^4.5.5",
"zustand-querystring": "^0.0.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.14",
"@playwright/test": "^1.47.2",
"@stellar/tsconfig": "^1.0.2",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.79.4",
"typescript": "^5.6.2"
}
}