-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.95 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
{
"name": "chat-app",
"private": true,
"version": "1.0.0",
"scripts": {
"monaca:preview": "npm run dev & npm run watch",
"monaca:transpile": "npm run build",
"monaca:debug": "npm run watch",
"dev": "cross-env NODE_ENV=development vite",
"watch": "cross-env NODE_ENV=development vite build --watch",
"build": "cross-env NODE_ENV=production vite build",
"copy:sw": "cpy src/service-worker.js www/",
"copy:sw-icons": "cpy icons www/assets/",
"postbuild": "npm run copy:sw && npm run copy:sw-icons",
"postinstall": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy ./node_modules/material-icons/iconfont/*.* ./src/fonts/"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.2",
"cordova-plugin-splashscreen": "6.0.0",
"cordova-plugin-statusbar": "2.4.3",
"dom7": "^3.0.0",
"dotenv": "^16.0.1",
"firebase": "^9.8.2",
"framework7": "^6.3.16",
"framework7-icons": "^5.0.5",
"framework7-react": "^6.3.16",
"material-icons": "^1.10.7",
"monaca-plugin-monaca-core": "3.3.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"skeleton-elements": "^3.5.0",
"cpy-cli": "^3.1.1",
"swiper": "^6.8.4"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.6",
"cross-env": "^7.0.3",
"postcss": "^8.4.7",
"postcss-preset-env": "^7.4.2",
"rollup": "^2.67.2",
"sass": "^1.52.1",
"vite": "^2.8.3",
"vite-plugin-html": "^3.0.6",
"yargs": "^17.4.1"
},
"cordova": {
"plugins": {
"cordova-plugin-splashscreen": {},
"monaca-plugin-monaca-core": {},
"cordova-plugin-statusbar": {}
}
}
}