-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 840 Bytes
/
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
{
"name": "firebase-node-js-rest-api-example",
"description": "A backend API example to be used as template for Firebase projects.",
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/rimraf ./dist && npx tsc",
"start": "node dist/index.js",
"dev": "nodemon --files --exec ts-node src/index.ts"
},
"keywords": [
"firebase",
"firestore",
"authentication",
"typescript",
"api",
"server",
"backend"
],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"firebase-admin": "^11.11.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}