forked from jason5ng32/MyIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "myip",
"private": true,
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"nodemon server.js\"",
"build": "vite build",
"preview": "vite preview",
"start-server": "node server.js",
"start-static": "node static-server.js",
"start": "concurrently \"npm run start-static\" \"npm run start-server\""
},
"dependencies": {
"@analytics/google-analytics": "^1.0.7",
"@cloudflare/speedtest": "^1.3.0",
"@khmyznikov/pwa-install": "^0.3.7",
"analytics": "^0.8.11",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"code-inspector-plugin": "^0.13.0",
"concurrently": "^8.2.2",
"country-code-lookup": "^0.1.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"express-slow-down": "^2.0.1",
"flag-icons": "^7.2.1",
"http-proxy-middleware": "^3.0.0",
"nodemon": "^3.1.0",
"svgmap": "^2.10.1",
"vue": "^3.4.26",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"vite": "^5.2.11",
"vite-plugin-pwa": "^0.20.0"
}
}