-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.06 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
{
"name": "landing-page",
"version": "1.0.0",
"private": true,
"description": "Landing page for EKD",
"main": "index.js",
"scripts": {
"lint:js": "npx eslint --ignore-path .gitignore --fix **/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build-devcon": "npx html-minifier --remove-comments --collapse-whitespace ./src/devcon.html -o ./src/index.html",
"build-devbiz": "npx html-minifier --remove-comments --collapse-whitespace ./src/devbiz.html -o ./src/business.html",
"build-all": "npm run build-devcon && npm run build-devbiz",
"serve": "firebase serve --only hosting",
"deploy-hosting": "firebase deploy --only hosting",
"staging": "firebase use develop && npm run build-all && npm run deploy-hosting",
"deploy": "firebase use default && npm run build-all && npm run deploy-hosting"
},
"author": "Jaime Loeuf",
"license": "MIT",
"devDependencies": {
"eslint": "^6.6.0",
"firebase-tools": "^7.11.0",
"html-minifier": "^4.0.0"
}
}