-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "catcat",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"firebase": "cd firebase/functions && npm run serve",
"serve": "wt serve index.js --secrets-file .env",
"deploy": "npm run build && wt create index.js --bundle --secrets-file .env",
"prod": "npm run build && npm run deploy",
"test": "jest --watchAll",
"docker-build-tsc": "cd scripts/tsc && docker build -t tsc:latest . && docker image ls tsc",
"docker-build": "docker build -t catcat:latest . && docker image ls catcat"
},
"author": "katopz",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"jest": "^22.4.2",
"typescript": "^2.7.2"
},
"dependencies": {
"@rabbotio/cryptox": "^0.3.0",
"@rabbotio/fetcher": "^1.0.5",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"es6-promise": "^4.2.4",
"express": "^4.16.2",
"fb-messenger": "^1.2.0",
"helmet": "^3.11.0",
"isomorphic-fetch": "^2.2.1",
"stellar-base": "^0.7.7",
"util.promisify": "^1.0.0",
"webtask-tools": "^3.2.0"
}
}