-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 878 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
{
"name": "vite-react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "Emanuele Favero",
"scripts": {
"dev": "concurrently \"vite --port 3000 --open\" \"eslint src\"",
"host": "concurrently \"vite --port 3000 --host --open\" \"eslint src\"",
"build": "tsc && vite build",
"preview": "vite preview --port 3000"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-react": "^2.2.0",
"concurrently": "^7.6.0",
"eslint": "^8.29.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.31.11",
"sass": "^1.56.1",
"typescript": "^4.6.4",
"vite": "^3.2.3"
}
}