-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1022 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
{
"name": "th3-weather-app",
"version": "1.0.0",
"type": "module",
"description": "React Weather App built by Alexander Pérez",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sass": "sass src/scss/styles.scss src/css/styles.css --no-source-map",
"postcss": "postcss src/css/styles.css -o src/css/styles-prefix.css --no-map",
"build-sass": "npm run sass && npm run postcss && npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"gh-pages": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.2",
"sass": "^1.61.0"
},
"keywords": ["Weather", "Weather App", "React Weather App", "Vitejs"],
"author": "Alexander Pérez",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"vite": "^4.1.0"
}
}