-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 2.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"homepage": "https://daggerok.github.io/vue-examples",
"name": "eventbus",
"version": "0.0.1",
"description": "A Vue.js project",
"author": "Maksim Kostromin <daggerok@gmail.com>",
"private": true,
"scripts": {
"clean": "rimraf -rf ./dist",
"start": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"build": "node build/build.js",
"predeploy": "npm-run-all predeploy:*",
"predeploy:clean": "yarn clean",
"predeploy:build": "cross-env GH_PAGES=true yarn build",
"predeploy:fallback": "ncp ./dist/index.html ./dist/404.html",
"predeploy:nojekyll": "touch ./dist/.nojekyll",
"deploy": "gh-pages -d ./dist -b gh-pages -m \"Parcel Github Pages $(date +%Y-%m-%d) deployment\""
},
"dependencies": {
"hammerjs": "2.0.8",
"jquery": "3.4.1",
"materialize-css": "0.100.2",
"vue": "2.5.17"
},
"devDependencies": {
"autoprefixer": "9.1.0",
"babel-core": "6.26.3",
"babel-helper-vue-jsx-merge-props": "2.0.3",
"babel-loader": "7.1.5",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-transform-vue-jsx": "3.7.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"chalk": "2.4.1",
"copy-webpack-plugin": "4.5.2",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"friendly-errors-webpack-plugin": "1.7.0",
"gh-pages": "1.2.0",
"html-webpack-plugin": "3.2.0",
"ncp": "2.0.0",
"node-notifier": "5.2.1",
"npm-run-all": "4.1.3",
"optimize-css-assets-webpack-plugin": "3.2.0",
"ora": "3.0.0",
"portfinder": "1.0.13",
"postcss-import": "12.0.0",
"postcss-loader": "2.1.6",
"postcss-url": "7.3.2",
"rimraf": "2.6.2",
"semver": "5.5.0",
"shelljs": "0.8.2",
"uglifyjs-webpack-plugin": "1.2.7",
"url-loader": "1.0.1",
"vue-loader": "13.7.2",
"vue-style-loader": "4.1.1",
"vue-template-compiler": "2.5.17",
"webpack": "3.12.0",
"webpack-bundle-analyzer": "3.6.0",
"webpack-dev-server": "3.1.11",
"webpack-merge": "4.1.4"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
}
],
"stage-2"
],
"plugins": [
"transform-vue-jsx",
"transform-runtime"
]
}
}