-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 966 Bytes
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
{
"name": "weekly-api-server",
"version": "1.0.0",
"scripts": {
"dev": "make dev",
"build": "make build",
"start": "make start",
"lint": "make lint",
"prepare": "husky install"
},
"engines": {
"node": ">=14.0.0 <21.0.0"
},
"dependencies": {
"@google-cloud/secret-manager": "^5.0.1",
"@twreporter/errors": "^1.1.2",
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"firebase-admin": "^11.4.1",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"nodemon": "^2.0.20",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
}