-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.84 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
{
"name": "counter-app",
"version": "0.5.4",
"description": "This is just a counter web application, that simply count things, it doesn't do anything else.",
"main": "src/main.js",
"scripts": {
"start": "NODE_ENV=development parcel src/app.html -d .localserver",
"build": "NODE_ENV=production npm run clean && parcel build src/app.html --out-file index.html --public-url './' --out-dir www/ --no-cache --no-source-maps",
"serve": "ip=`ipconfig getifaddr en0`; php -S $ip:8000 -t www/",
"clean": "rm -rf www/* && rm -rf .localserver/*",
"version": "npm run appversion && npm run build && git add .",
"appversion": "PKG_VERSION=$(node -pe \"require('./package.json').version\") && D=`date +%Y%m%d%H%M%S` && echo '{ \"version\" : \"'$PKG_VERSION'\", \"build\" : \"'$D'\" }' > src/version.json",
"postversion": "git push && git push --tags",
"deploy": "netlify deploy --prod"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alterebro/counter-app.git"
},
"keywords": [],
"author": {
"name": "Jorge Moreno, @alterebro",
"url": "https://moro.es"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/alterebro/counter-app/issues"
},
"homepage": "https://github.com/alterebro/counter-app#readme",
"sw-precache": {
"navigateFallback": "/index.html",
"navigateFallbackWhitelist": [
"/^/app//"
]
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.1.2",
"nosleep.js": "^0.9.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.4.3",
"parcel-plugin-sw-precache": "^1.1.2",
"sass": "^1.26.5",
"tinytime": "^0.2.6",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"vue": "^3.0.0",
"vue-hot-reload-api": "^2.3.4"
}
}