-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 KB
/
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
36
37
38
39
40
41
{
"name": "@repo/core",
"description": "Code to share between backend apps/services",
"version": "0.0.0",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
"./utils": "./dist/utils/index.js",
"./firebase": "./dist/firebase.js"
},
"scripts": {
"compile": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"test": "vitest",
"build": "tsup && tsc --emitDeclarationOnly && tsc-alias --verbose",
"clean": "del-cli dist tsconfig.tsbuildinfo",
"coverage": "vitest run --coverage "
},
"license": "MIT",
"dependencies": {
"@repo/common": "workspace:*",
"@sindresorhus/is": "^7.0.1",
"firebase-admin": "^12.6.0",
"firebase-functions": "^5.1.1"
},
"devDependencies": {
"@codecompose/typescript-config": "^1.1.3",
"@repo/eslint-config": "workspace:*",
"@types/node": "^22.7.5",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"npm-run-all": "^4.1.5",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
}
}