-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "recipes-tech",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"@polymer/app-layout": "^3.0.2",
"@polymer/iron-icons": "^3.0.0",
"@polymer/paper-icon-button": "^3.0.1",
"@polymer/polymer": "^3.1.0",
"@webcomponents/webcomponentsjs": "^2.2.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"ejs": "^2.6.1",
"express": "^4.16.4",
"firebase-admin": "^9.4.2",
"js-yaml": "^4.0.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "github:types/npm-express",
"@types/form-data": "^2.5.0",
"@types/node-fetch": "^2.5.8",
"polymer-cli": "^1.9.1",
"typescript": "^4.1.3"
},
"scripts": {
"build": "yarn build:back && yarn build:front",
"build:back": "tsc --build tsconfig.json",
"build:front": "polymer build --sources frontend/**/*",
"start": "node index.js",
"serve": "bash ./scripts/serve.sh",
"serve:polymer": "polymer serve",
"predeploy": "yarn build && sh ./scripts/postbuild.sh",
"deploy": "yarn build && sh ./scripts/postbuild.sh && cd dist && gcloud app deploy --quiet --project git-recipes"
}
}