-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 731 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 731 Bytes
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
{
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"server": "json-server --watch db.json --port 5000"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.14.5",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-icons": "^4.2.0",
"vite-react-jsx": "^1.1.1",
"json-server": "^0.16.3"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.1",
"vite": "^2.4.4"
},
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"runtime": "automatic"
}
]
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}