-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 933 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
32
33
34
35
36
{
"name": "cleaning-list-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "serve dist/ -l 8080",
"serve:prod": "sed -e \"s#REPLACE#$API_BASE_URL#g\" dist/env.js > dist/apiURL.js && serve dist/ -l 8080",
"lint": "prettier --check src *.md *.json",
"format": "prettier --write src *.md *.json"
},
"dependencies": {
"@fontsource/inter": "^4.5.14",
"@headlessui/react": "^1.7.11",
"@types/node": "^18.11.17",
"axios": "^1.2.1",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.5.0",
"serve": "^14.2.0"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"typescript": "^4.6.4",
"vite": "^3.2.3"
}
}