-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "agoric-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-info": "VITE_BASE_URL=https://info.inter.trade vite",
"build": "tsc && vite build",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "npx jest --maxWorkers=1 --config jest.config.ts",
"test:e2e": "cypress run",
"preview": "vite preview"
},
"dependencies": {
"@cubejs-client/core": "^0.34.2",
"@cubejs-client/react": "^0.33.47",
"@cubejs-client/ws-transport": "^0.34.9",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-table": "^8.9.1",
"axios": "^1.6.8",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"lucide-react": "^0.287.0",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.11.2",
"recharts": "^2.1.15",
"shadcn-ui": "^0.1.3",
"swr": "^2.2.5",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"unchanged": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.23.0",
"@endo/far": "^1.1.1",
"@endo/init": "^1.1.1",
"@endo/marshal": "^1.4.1",
"@rollup/plugin-alias": "^5.0.0",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.14",
"cypress": "^13.7.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"tsc",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
}
}