-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "flc-notify-service",
"version": "1.0.0",
"description": "Suite of tools for use across flc projects",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "tsc -w",
"start": "doppler run netlify dev",
"release:major": "npm run clean:git && node scripts/release.js major",
"release:minor": "npm run clean:git && node scripts/release.js minor",
"release:patch": "npm run clean:git && node scripts/release.js patch",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstlovecenter/flc-notify-service.git"
},
"keywords": [
"flc-notify-service"
],
"author": "John-Dag Addy",
"license": "ISC",
"bugs": {
"url": "https://github.com/firstlovecenter/flc-notify-service/issues"
},
"homepage": "https://github.com/firstlovecenter/flc-notify-service#readme",
"dependencies": {
"axios": "^1.6.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.4",
"form-data": "^4.0.0",
"mailgun.js": "^7.0.0",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"gitops-secrets": "^0.0.6",
"husky": "^7.0.4",
"lint-staged": "^14.0.1",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"typescript-eslint": "^0.0.1-alpha.0"
}
}