-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
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
{
"name": "defund12-api",
"repository": {
"type": "git",
"url": "git+https://github.com/defund12.org/defund12-api.git"
},
"scripts": {
"build": "tsc",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"lint": "eslint .",
"lint-fx": "eslint --fix ."
},
"engines": {
"node": "10"
},
"main": "lib/index.js",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^7.2.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-basic-auth": "^1.2.0",
"express-joi-validation": "^4.0.3",
"firebase-admin": "^8.6.0",
"firebase-functions": "^3.3.0",
"lob": "^6.1.0",
"lodash": "^4.17.15",
"mailgun-js": "^0.22.0",
"stripe": "^8.64.0"
},
"devDependencies": {
"firebase-functions-test": "^0.1.6",
"typescript": "3.8.3",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/hapi__joi": "^17.1.2",
"@types/lodash": "^4.14.155",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"gts": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0"
},
"private": true,
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}