-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "framework7-vue-webpack",
"version": "2.6.0",
"description": "",
"dependencies": {
"cordova-plugin-splashscreen": "6.0.0",
"cordova-plugin-statusbar": "2.4.3",
"cordova-plugin-whitelist": "1.3.5",
"framework7": "^3.4.0",
"framework7-icons": "^0.9.1",
"framework7-vue": "^3.4.0",
"material-design-icons": "^3.0.1",
"monaca-plugin-monaca-core": "3.3.1",
"vue": "^2.5.17"
},
"scripts": {
"monaca:preview": "npm run dev & npm run watch",
"monaca:transpile": "npm run build",
"monaca:debug": "npm run watch",
"dev": "webpack-serve --open",
"build": "webpack --mode production",
"watch": "webpack --watch --mode production",
"copy-fonts": "cpy node_modules/framework7-icons/fonts/*.* src/fonts && cpy node_modules/material-design-icons/iconfont/*.{eot,ttf,woff,woff2} src/fonts",
"prepare": "npm run copy-fonts"
},
"cordova": {
"plugins": {
"cordova-plugin-splashscreen": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"monaca-plugin-monaca-core": {}
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"cordova": "^10.0.0",
"css-loader": "^1.0.0",
"cssnano": "^4.0.2",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.3.2",
"progress-bar-webpack-plugin": "^1.11.0",
"style-loader": "^0.21.0",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-serve": "^2.0.2",
"yargs": "^12.0.1",
"cpy-cli": "^2.0.0"
}
}