-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
79
80
81
{
"name": "knuckles-workspace",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tscpp/knuckles"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "nx run-many -t build",
"checks": "scripts/checks",
"docs": "nx dev @apps/website",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky",
"test": "nx run-many -t test",
"type-check": "tsc -b tsconfig.json"
},
"dependencies": {
"@nx/devkit": "19.2.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@jest/globals": "^29.7.0",
"@microsoft/api-extractor": "^7.43.1",
"@nx/eslint": "19.2.2",
"@nx/jest": "19.2.2",
"@nx/js": "19.2.2",
"@nx/playwright": "19.2.2",
"@nx/plugin": "19.2.2",
"@nx/vite": "19.2.2",
"@nx/web": "19.2.2",
"@nx/workspace": "19.2.2",
"@playwright/test": "^1.43.1",
"@swc-node/register": "1.9.1",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.11",
"@tools/eslint": "workspace:*",
"@tools/nx": "workspace:*",
"@tools/tsconfig": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "1.1.0",
"@types/node": "20.12.7",
"@vitest/ui": "^1.3.1",
"conventional-versioning": "0.2.0-rc.8",
"coveralls": "^3.1.1",
"escape-string-regexp": "^5.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-playwright": "^1.6.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"markdown-it-footnote": "^4.0.0",
"nx": "19.2.2",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"pretty-quick": "^4.0.0",
"revise-static-content": "~0.1.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"vite": "~5.0.0",
"vitest": "^1.3.1",
"vue": "^3.4.23"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
},
"patchedDependencies": {}
}
}