This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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": "functions",
"scripts": {
"lint": "./node_modules/.bin/tslint -p tslint.json",
"build": "./node_modules/.bin/tsc",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase experimental:functions:shell",
"start": "cp config/config.dev.ts config/config.ts && node node_modules/ts-node/dist/bin.js ./src/index.ts",
"start:prod": "cp config/config.prod.ts config/config.ts && node node_modules/ts-node/dist/bin.js ./src/index.ts",
"test": "mocha -r ts-node/register test/*.ts --inspect || exit 0",
"test:export": "mocha -r ts-node/register test/koboExportApi.spec.ts --inspect || exit 0",
"test:api": "mocha -r ts-node/register test/koboApi.spec.ts --inspect || exit 0",
"test:share": "mocha -r ts-node/register test/koboShareApi.spec.ts --inspect || exit 0",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"main": "lib/src/index.js",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"firebase-admin": "~5.10.0",
"firebase-functions": "^2.2.0",
"ini": "^1.3.5",
"js-xlsx": "^0.8.22",
"json2csv": "^4.1.2",
"multer": "^1.3.0",
"pg": "^7.4.3",
"randomstring": "^1.1.5",
"request": "^2.83.0",
"ts-node": "^6.0.3",
"xlsx": "^0.11.18"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/ini": "^1.3.29",
"@types/mocha": "^5.2.0",
"@types/pg": "^7.4.5",
"@types/request": "^2.47.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"dirty-chai": "^2.0.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.1.1",
"prettier": "1.12.1",
"ts-node": "^6.0.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.8.3"
},
"private": true
}