-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.77 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.77 KB
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
{
"name": "stellar-laboratory",
"version": "0.1.0",
"author": "Stellar Development Foundation <stellar@stellar.org>",
"license": "Apache-2.0",
"engines": {
"node": ">=22.22.0"
},
"scripts": {
"fetch-limits": "node scripts/fetch-network-limits.mjs",
"predev": "pnpm fetch-limits",
"dev": "NEXT_PUBLIC_COMMIT_HASH=$(git rev-parse --short HEAD) NEXT_PUBLIC_ENABLE_EXPLORER=true next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "tsc --noEmit",
"test:unit": "jest",
"test:e2e": "playwright test",
"test": "pnpm test:unit && pnpm test:e2e",
"install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet pnpm.lock && pnpm install || exit 0",
"prepare": "husky",
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm lint:ts && pnpm test:e2e && pnpm test:unit",
"playwright-ui": "npx playwright test --ui"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.37.2",
"@creit.tech/stellar-wallets-kit": "^2.0.1",
"@ledgerhq/hw-app-str": "^7.6.0",
"@ledgerhq/hw-transport-webhid": "^6.33.0",
"@monaco-editor/react": "^4.7.0",
"@next/third-parties": "^16.2.1",
"@sentry/nextjs": "^10.46.0",
"@stellar-expert/contract-wasm-interface-parser": "^4.0.0",
"@stellar/design-system": "^3.2.7",
"@stellar/stellar-sdk": "^14.6.1",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"@trezor/connect-plugin-stellar": "^9.2.3",
"@trezor/connect-web": "^9.7.2",
"bignumber.js": "^10.0.2",
"dompurify": "^3.3.3",
"html-react-parser": "^5.2.6",
"immer": "^11.1.4",
"lodash": "^4.17.21",
"lossless-json": "^4.3.0",
"next": "16.2.1",
"papaparse": "^5.5.2",
"react": "^19.2.2",
"react-diff-viewer": "^3.1.1",
"react-dom": "^19.2.2",
"stellar-hd-wallet": "^1.0.2",
"tslib": "^2.8.1",
"uuid": "^13.0.0",
"zustand": "^5.0.6",
"zustand-querystring": "^0.6.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.1",
"@playwright/test": "^1.58.2",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.20",
"@types/node": "^25.5.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"eslint": "^10.1.0",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"ts-jest": "^29.4.6",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@10.15.1"
}