-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "ionic4-vue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "rm -rf dist && mkdir -p dist && cp -rf node_modules/@ionic/core/dist/ionic dist",
"start": "webpack-dev-server --env.NODE_ENV=development",
"start:prod": "run-s build gzip server",
"build": "webpack -p",
"gzip": "find dist -type f | grep -E '.(js|html|css)$' | xargs gzip -kf",
"server": "http-server dist -p 9000 --gzip"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ionic/core": "^0.0.2-31",
"vue": "^2.5.11",
"vue-class-component": "^6.1.2",
"vue-router": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"html-webpack-plugin": "^2.30.1",
"npm-run-all": "^4.1.2",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
}
}