-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "testapp",
"private": true,
"version": "1.0.0",
"description": "testApp",
"repository": "",
"license": "UNLICENSED",
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development vite",
"build": "cross-env NODE_ENV=production vite build && npx workbox generateSW workbox-config.js",
"build-cordova": "cross-env TARGET=cordova cross-env NODE_ENV=production vite build && node ./build/build-cordova.js && cd cordova && cordova build",
"postinstall": "cpy --flat ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy --flat ./node_modules/material-icons/iconfont/*.* ./src/fonts/"
},
"browserslist": [
"IOS >= 13",
"Safari >= 13",
"last 5 Chrome versions",
"last 5 Firefox versions",
"Samsung >= 12"
],
"dependencies": {
"dom7": "^4.0.4",
"framework7": "^7.0.5",
"framework7-icons": "^5.0.5",
"material-icons": "^1.11.1",
"skeleton-elements": "^4.0.0",
"swiper": "^8.2.2"
},
"devDependencies": {
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"less": "^4.1.2",
"postcss-preset-env": "^7.7.0",
"rollup": "^2.75.5",
"rollup-plugin-framework7": "^1.2.1",
"vite": "^2.9.9",
"vite-plugin-html": "^3.2.0",
"workbox-cli": "^6.5.3"
}
}