-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.67 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
41
42
43
44
45
46
47
48
{
"name": "request-info",
"version": "0.1.1",
"private": false,
"author": {
"name": "Mohammad Hosein Shahpouri",
"email": "mh.shahpouri@gmail.com"
},
"homepage": "https://mohammad-hosein-shahpouri.github.io/RequestInfo/",
"repository": {
"type": "git",
"url": "https://github.com/mohammad-hosein-shahpouri/RequestInfo/"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"dayjs": "^1.11.6",
"leaflet": "^1.9.3",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/leaflet": "^1.9.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^2.2.0",
"gh-pages": "^4.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-compression": "^0.5.1"
},
"scripts": {
"watch-css": "npx tailwindcss -i ./src/assets/styles/Styles.css -o ./src/assets/styles/Styles.Compiled.css --watch",
"build-css": "npx tailwindcss -i ./src/assets/styles/Styles.css -o ./src/assets/styles/Styles.Compiled.css --minify",
"predev": "npm run build-css",
"dev": "vite",
"prebuild": "npm run build-css",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -b gh-pages"
}
}