-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "weathermateapp",
"displayName": "WeatherMate App",
"version": "1.1.0",
"description": "A weather app that displays real-time weather information for any location.",
"main": "index.js",
"scripts": {
"install-deps": "npm install",
"start": "http-server -o",
"build": "npm run start",
"test": "http-server -o",
"serve": "http-server -o",
"format": "prettier --config ./project-config/.prettierrc --write \"src/css/*.{html,css,js,jsx,ts,tsx}\" \"src/html/*.{html,css,js,jsx,ts,tsx}\" \"src/js/*.{html,css,js,jsx,ts,tsx}\" \"404.html\" \"index.html\" \"microfrontend-layout.html\"",
"dev:android": "cd WeatherMate-Mobile && cordova run android",
"dev:ios": "cd WeatherMate-Mobile && cordova run ios",
"build:android": "cd WeatherMate-Mobile && cordova build android",
"build:ios": "cd WeatherMate-Mobile && cordova build ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/WeatherMate-App.git"
},
"keywords": [
"weather",
"app",
"real-time",
"location",
"forecast",
"humidity",
"temperature",
"wind",
"rain",
"conditions",
"information"
],
"author": "Son Nguyen",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"django": "^1.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-server": "^14.1.1",
"i18next": "^23.7.11",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"single-spa": "^6.0.0",
"vue": "^3.3.13"
}
}