-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "reakt-dashboard",
"private": false,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/**/**/*.{js,jsx}",
"lint:fix": "eslint --fix src/**/**/*.{js,jsx}",
"format": "prettier --write src/**/**/*.{js,jsx,json,scss} --config ./.prettierrc"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7",
"sass": "^1.60.0",
"vite": "^4.2.3"
},
"main": "main.jsx",
"author": "wsameer <dev.wsameer@gmail.com>",
"license": "MIT"
}