forked from Sparragus/platzi-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "platzi-badges",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm-run-all -cp client:dev server",
"preview": "npm run client",
"build": "vite build && cp dist/index.html dist/404.html",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"client": "vite preview",
"client:dev": "vite",
"server": "json-server --port 3000 --watch server/db.json",
"seed": "node server/seed.js"
},
"dependencies": {
"@ngneat/falso": "^7.2.0",
"bootstrap": "^5.3.3",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"json-server": "^0.17.4",
"vite": "^5.2.0"
}
}