-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "airtable-api-proxy",
"version": "1.0.0",
"description": "Api proxy for connecting public requests with airtable via private requests",
"repository": {
"type": "git",
"url": "git+https://github.com/enspiral/airtable-api-proxy.git"
},
"keywords": [
"airtable",
"api",
"proxy"
],
"author": "agentlewis",
"license": "Apache-2.0",
"private": true,
"bugs": {
"url": "https://github.com/enspiral/airtable-api-proxy/issues"
},
"homepage": "https://github.com/enspiral/airtable-api-proxy#readme",
"scripts": {
"firebase": "./node_modules/.bin/firebase",
"firebase:login": "npm run firebase login",
"firebase:keys": "npm run firebase functions:config:get",
"firebase:keys:download": "npm run firebase functions:config:get > .runtimeconfig.json",
"serve": "npm run build && npm run firebase serve --only functions",
"deploy": "npm run firebase deploy",
"logs": "npm run firebase functions:log",
"clean": "rimraf 'dist'",
"clean:build": "npm run clean && npm run build && npm run deps",
"deps": "npm run deps:copy && npm run deps:env && npm run deps:install",
"deps:copy": "cpx package.json dist/functions",
"deps:env": "npm run --silent firebase functions:config:get > ./dist/functions/.runtimeconfig.json",
"deps:install": "cd ./dist/functions && npm install && cd ../..",
"build": "babel src/functions --out-dir dist/functions",
"watch": "npm-watch",
"lint": "standard",
"format": "prettier-standard src/**/**/**/**/**/**/*.js",
"ajv": "./node_modules/.bin/ajv",
"test": "echo 'We will test one day!'",
"start": "npm run --silent build && npm run firebase functions:shell"
},
"watch": {
"build": "src/**/**/**/**/**/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"...": "..."
}
},
"lint-staged": {
"src/**/**/**/**/**/*.js": [
"standard",
"git add"
]
},
"engines": {
"node": "10"
},
"dependencies": {
"airtable": "^0.8.1",
"ajv": "^6.12.3",
"ajv-async": "^1.0.1",
"camelcase": "^6.0.0",
"cors": "^2.8.5",
"firebase-admin": "^9.0.0",
"firebase-functions": "^3.8.0",
"gravatar": "^1.8.1",
"js-md5": "^0.7.3",
"node-fetch": "^2.6.0",
"ramda": "0.27.0",
"ramda-adjunct": "^2.27.0",
"regex-email": "^1.0.2",
"string.prototype.trim": "^1.2.1",
"stripe": "^8.78.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"ajv-cli": "^3.2.1",
"cpx": "^1.5.0",
"firebase-functions-test": "^0.2.1",
"firebase-tools": "^8.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-watch": "^0.6.0",
"prettier-standard": "^16.4.1",
"rimraf": "^3.0.2",
"standard": "^14.3.4"
}
}