-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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": "belajar-framework7",
"private": true,
"version": "1.0.0",
"description": "Belajar Framework7",
"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",
"deploy": "sh deploy.sh",
"postinstall": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy ./node_modules/material-icons/iconfont/*.* ./src/fonts/"
},
"browserslist": [
"Android >= 7",
"IOS >= 11",
"Safari >= 11",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"dependencies": {
"dom7": "^3.0.0",
"framework7": "^6.3.14",
"framework7-icons": "^5.0.5",
"framework7-vue": "^6.3.14",
"material-icons": "^1.10.4",
"skeleton-elements": "^3.5.0",
"swiper": "^6.8.4",
"vue": "^3.2.26"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"postcss-preset-env": "^6.7.0",
"vite": "^2.7.10",
"workbox-cli": "^6.4.2"
}
}