-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "phase-2-project-wax-stax",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "server.js",
"engines": {
"node": "21.5.0"
},
"scripts": {
"start": "vite && server.js",
"server": "json-server --watch db.json --port 4000",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"formik": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"json-server": "^1.0.0-alpha.23",
"scss": "^0.2.4",
"uuidv4": "^6.2.13",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"react-router-dom": "^6.22.2",
"sass-loader": "^14.1.1",
"vite": "^5.1.4"
}
}