-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bearclaw",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"cz": "cz",
"nx": "nx",
"generate-cel-parser": "antlr4 -Dlanguage=TypeScript packages/cel/src/lib/gen/CEL.g4 -visitor",
"generate-timezoone-offset-map": "npx ts-node scripts/generate-timezone-offset-map.ts"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-angular": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@jscutlery/semver": "^5.3.1",
"@nrwl/cli": "15.0.0",
"@nrwl/eslint-plugin-nx": "19.8.0",
"@nrwl/jest": "19.8.0",
"@nrwl/js": "19.8.0",
"@nrwl/linter": "19.8.0",
"@nrwl/node": "19.8.0",
"@nrwl/workspace": "19.8.0",
"@nx/js": "19.8.0",
"@nx/vite": "19.8.0",
"@nx/web": "19.8.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/deep-freeze-strict": "^1.1.0",
"@types/jest": "29.5.13",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "^7.0.4",
"jest": "29.7.0",
"nx": "19.8.0",
"prettier": "2.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.2.5",
"ts-node": "10.9.1",
"typescript": "~5.5.2",
"verdaccio": "^5.0.4",
"vite": "^5.0.0",
"vite-plugin-dts": "~3.8.1",
"vitest": "^1.3.1"
},
"dependencies": {
"@buf/cel_spec.bufbuild_es": "^2.1.0-20230602032904-0583f28ce7d3.1",
"@buf/google_cel-spec.bufbuild_es": "^2.1.0-20240829202630-b69910e4e9bc.1",
"@bufbuild/protobuf": "^2.1.0",
"@vvo/tzdb": "^6.149.0",
"antlr4": "^4.13.2",
"class-transformer": "^0.5.1",
"deep-freeze-strict": "^1.1.1",
"dequal": "^2.0.3",
"fast-json-stable-stringify": "^2.1.0",
"immer": "^9.0.15",
"iso8601-duration": "^2.1.2",
"just-extend": "^6.1.1",
"safe-stable-stringify": "^2.5.0",
"tslib": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nx": {
"includedScripts": []
}
}