-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "staking-rewards-frontend",
"private": true,
"version": "0.0.0",
"author": "https://github.com/sstefdev",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --max-warnings 0",
"lint:check": "eslint --ignore-path .eslintignore \"src/**/*.ts\"",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\""
},
"dependencies": {
"axios": "^1.4.0",
"mathjs": "^11.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.1",
"react-spinners-kit": "^1.9.1",
"react-toastify": "^9.1.3",
"sass": "^1.63.6"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.0",
"postcss-preset-env": "^9.0.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"vite-tsconfig-paths": "^4.2.0"
}
}