-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 991 Bytes
/
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
{
"homepage": "https://daggerok.github.io/vue-examples",
"devDependencies": {
"babel-preset-env": "1.6.1",
"gh-pages": "1.1.0",
"ncp": "2.0.0",
"npm-run-all": "4.1.2",
"parcel-bundler": "1.10.0",
"rimraf": "2.6.2"
},
"dependencies": {
"hammerjs": "2.0.8",
"jquery": "3.5.0",
"materialize-css": "0.100.2",
"vue": "2.5.13"
},
"scripts": {
"start": "parcel ./app/index.html",
"prebuild": "yarn -i || npm i --no-optional",
"build": "parcel build ./app/index.html",
"predeploy": "npm-run-all predeploy:*",
"predeploy:clean": "rimraf -rf ./dist",
"predeploy:build": "parcel build ./app/index.html --no-cache --public-url='/vue-examples/'",
"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\""
},
"babel": {
"presets": [
"env"
]
}
}