-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mareers",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"tsc": "tsc"
},
"private": true,
"dependencies": {
"@google-cloud/bigquery": "^6.2.1",
"@jetit/id": "^0.0.12",
"@types/bun": "^1.3.1",
"dexie": "^3.2.7",
"dexie-observable": "^4.0.1-beta.13",
"husky": "^8.0.3",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/config-nx-scopes": "^19.8.1",
"@nx/esbuild": "22.0.2",
"@nx/eslint": "22.0.2",
"@nx/eslint-plugin": "22.0.2",
"@nx/jest": "22.0.2",
"@nx/js": "22.0.2",
"@nx/workspace": "22.0.2",
"@types/jest": "30.0.0",
"@types/node": "18.19.31",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"bunup": "^0.15.13",
"esbuild": "^0.25.12",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-util": "30.0.5",
"lint-staged": "^16.2.6",
"nx": "22.0.2",
"prettier": "^2.8.8",
"ts-jest": "29.4.5",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,ts}": [
"nx format:write --uncommitted"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bsreeram08/experiments"
}
}