-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.61 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
{
"name": "pwa-pint",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "npm run reset && cd src && bower install && cd .. && cd functions && npm install --unsafe-perm && cd .. && npm install && npm run build",
"build": "npm run build:dev",
"build:dev": "node node_modules/pwa-build build --config config/main.js --fb --legacy",
"build:prod": "node node_modules/pwa-build build --config config/main.js --min --es5 --sw --sitemap --fb --legacy",
"build:prod:stage": "node node_modules/pwa-build build --config config/main.js --min --es5 --sw --sitemap --fb --legacy --stage",
"dev": "npm run dev:fb+",
"dev:fb": "npm run build && firebase serve --only hosting",
"dev:fb+": "npm run build:prod && firebase serve --only hosting,functions",
"dev:bs": "npm run build:dev && node node_modules/pwa-build dev --config config/main.js --bs",
"deploy": "npm run build:prod && firebase deploy --only hosting, functions",
"deploy:fn": "firebase deploy --only functions",
"deploy:host": "npm run build:prod && firebase deploy --only hosting",
"dwinit": "npm run pwa-build $TYPE",
"reset": "npm run reset:bower && npm run reset:fb && npm run reset:node",
"reset:bower": "cd src && rm -rf bower_components && cd ..",
"reset:fb": "rm -rf firebase.json && rm -rf .firebaserc",
"reset:node": "rm -rf node_modules && cd functions && rm -rf node_modules && cd .."
},
"author": "",
"license": "ISC",
"devDependencies": {
"pwa-build": "git+https://gitlab-ci-token:[email protected]/pwa/pwa-build#0.0.8"
},
"dependencies": {}
}