-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
42
43
44
45
{
"name": "seven-burger",
"private": true,
"version": "1.0.0",
"description": "Seven Burger",
"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",
"postinstall": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy ./node_modules/material-icons/iconfont/*.* ./src/fonts/",
"lint": "eslint --ext .js,.jsx ."
},
"browserslist": [
"Android >= 7",
"IOS >= 11",
"Safari >= 11",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"dependencies": {
"dom7": "^4.0.6",
"framework7": "^8.0.0",
"framework7-icons": "^5.0.5",
"material-icons": "^1.10.0",
"skeleton-elements": "^4.0.1",
"swiper": "^9.2.0"
},
"devDependencies": {
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"less": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"rollup-plugin-framework7": "^1.2.0",
"vite": "^2.6.13",
"workbox-cli": "^6.3.0"
}
}