This repository has been archived by the owner on Oct 7, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
84 lines (84 loc) · 2.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "framework7-template-vue-webpack",
"version": "2.0.0",
"description": "Framework7 Vue Webpack starter app template",
"scripts": {
"build-dev": "node ./build/dev.js",
"build-prod": "node ./build/prod.js",
"dev": "webpack-dev-server --config ./build/webpack.config.dev.js",
"prod": "webpack-dev-server --config ./build/webpack.config.prod.js",
"start": "npm run dev",
"copy-fonts": "cpy node_modules/framework7-icons/fonts/*.* src/fonts && cpy node_modules/material-design-icons/iconfont/*.{eot,ttf,woff,woff2} src/fonts",
"postinstall": "npm run copy-fonts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framework7io/framework7-template-vue-webpack.git"
},
"keywords": [
"ios",
"webpack",
"framework7",
"vue",
"vuejs",
"material",
"mobile",
"app",
"f7"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/framework7io/framework7-template-vue-webpack/issues"
},
"homepage": "http://framework7.io/vue/",
"dependencies": {
"framework7": "^4.0.0",
"framework7-icons": "^2.2.0",
"framework7-vue": "^4.0.0",
"material-design-icons": "^3.0.1",
"vue": "^2.6.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.4.7",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"cpy-cli": "^2.0.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"vue-loader": "^15.6.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.3",
"webpack": "^4.29.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}