forked from stellar/laboratory
-
Notifications
You must be signed in to change notification settings - Fork 0
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.20.1",
"@creit.tech/stellar-wallets-kit": "^1.9.3",
"@ledgerhq/hw-app-str": "^7.2.9",
"@ledgerhq/hw-transport-webhid": "^6.30.9",
"@monaco-editor/react": "^4.7.0",
"@next/third-parties": "^15.5.7",
"@sentry/nextjs": "^10.29.0",
"@stellar-expert/contract-wasm-interface-parser": "^4.0.0",
"@stellar/design-system": "^3.2.7",
"@stellar/stellar-sdk": "^14.3.3",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@trezor/connect-plugin-stellar": "^9.2.3",
"@trezor/connect-web": "^9.6.4",
"bignumber.js": "^9.3.1",
"dompurify": "^3.2.5",
"html-react-parser": "^5.2.6",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lossless-json": "^4.0.2",
"next": "15.5.9",
"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": "^11.1.0",
"zustand": "^5.0.6",
"zustand-querystring": "^0.0.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.4.4",
"@playwright/test": "^1.57.0",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.20",
"@types/node": "^24.1.0",
"@types/papaparse": "^5.3.15",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"eslint": "^9.32.0",
"eslint-config-next": "15.4.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"ts-jest": "^29.4.6",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.15.1"
}