-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.95 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
{
"name": "frontend",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "VITE_BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:live": "tsx scripts/test-staking-rewards.js",
"lint": "eslint src/ --max-warnings 0",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"prettier-check": "prettier --check src/",
"changelog": "node ./internals/scripts/changelog.cjs",
"release-tag": "node ./internals/scripts/release-tag.cjs",
"lint-git": "node ./internals/scripts/gitlint.cjs",
"lint-docs": "markdownlint --ignore '**/node_modules/**' '**/*.md'",
"lint-changelog": "markdownlint --config .changelog/.markdownlint.yml .changelog/"
},
"dependencies": {
"axios": "^1.7.9",
"file-saver": "^2.0.5",
"papaparse": "^5.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.9.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jsdom": "^27.0.1",
"markdownlint-cli": "^0.47.0",
"postcss": "^8.4.49",
"prettier": "^3.7.3",
"tailwindcss": "^3.4.16",
"tsx": "^4.21.0",
"vite": "^7.2.6",
"vitest": "^3.2.4"
},
"packageManager": "yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
}