forked from digitalocean/sample-vite-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 783 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 783 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
{
"name": "sample-vite-react",
"version": "1.0.2",
"type": "module",
"scripts": {
"build": "rm -r _static 2>/dev/null; node sammy.js; vite build",
"start": "node sammy.js; serve -s _static -l tcp://0.0.0.0:$PORT -n",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"dev": "vite",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve": "^14.2.1"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"vite": "^4.4.11"
}
}