-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 864 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
{
"name": "backend",
"private": true,
"main": "dist/index.js",
"scripts": {
"serve": "npm run clean && npm run build && firebase emulators:start --only functions",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"clean": "rimraf dist",
"build": "tsc",
"lint": "eslint . --ext .ts,.json --report-unused-disable-directives",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": "16"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"firebase-admin": "^10.0.2",
"firebase-functions": "^4.0.2",
"uuid": "^9.0.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@danifoldi/eslint-plugin-eslint-presets": "^1.8.3",
"@types/uuid": "^8.3.4",
"eslint": "^8.26.0",
"firebase-functions-test": "^0.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}