-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
38 lines (38 loc) · 965 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
36
37
38
{
"name": "@repo/common",
"description": "Common code for both backend and frontend",
"version": "0.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"compile": "tsc --noEmit",
"test": "vitest",
"build": "tsup && tsc --emitDeclarationOnly",
"clean": "del-cli dist tsconfig.tsbuildinfo",
"lint": "eslint src --flag unstable_config_lookup_from_file --max-warnings 0",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"dependencies": {
"firebase": "^11.2.0",
"remeda": "^2.20.0"
},
"devDependencies": {
"@codecompose/typescript-config": "^1.2.0",
"@eslint/js": "^9.19.0",
"@repo/eslint-config": "workspace:*",
"del-cli": "^6.0.0",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4"
}
}