-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "react18-boilerplate",
"version": "1.1.0",
"description": "empty project for building a react18 web application",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet"
},
"repository": {
"type": "git",
"url": "https://github.com/razvan-rosu/react18-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"react18",
"boilerplate"
],
"author": "Răzvan Roșu",
"license": "ISC",
"dependencies": {
"@tanstack/react-query": "^4.24.4",
"component-library": "file:../react-monorepository",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.24",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.2",
"vite": "^4.3.9",
"vite-plugin-svgr": "^2.4.0"
}
}