-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "lansingcodes-firebase-tools",
"version": "1.0.0",
"description": "Tools for managing Lansing Codes data",
"author": "Michigan Technology Network, LLC",
"contributors": [
"Andrew Tomaka",
"Chris Fritz",
"Erik Gillespie <erik.gillespie@gmail.com>",
"Meg Blaha",
"Joe Ryan"
],
"license": "Hippocratic-2.1",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"precommit": "run-s lint test",
"build": "run-s lint test compile",
"compile": "netlify-lambda build src --config ./webpack.config.js",
"db:select": "firebase use $FIREBASE_PROJECT",
"db:deploy": "firebase deploy",
"deploy": "run-s build db:select db:deploy",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore .",
"dev": "netlify-lambda serve src --config ./webpack.config.js",
"test": "jest"
},
"devDependencies": {
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"firebase-tools": "^14.0.0",
"jest": "^29.7.0",
"netlify-lambda": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@firebase/app": "^0.10.0",
"axios": "^1.6.0",
"firebase-admin": "^13.0.0",
"ical2json": "^2.0.0",
"moment": "^2.30.0",
"moment-timezone": "^0.5.45"
}
}