-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.83 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.83 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "voiden-root",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"packageManager": "yarn@4.3.1",
"scripts": {
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"dev:shared": "npx tsc -p apps/shared --watch",
"dev": "npx tsc -p apps/backend && node --env-file=.env apps/backend/dist/index.js",
"build:shared": "npx tsc -p apps/shared",
"start": "NODE_ENV=production node apps/backend/out/index.js",
"start:local": "node --env-file=.env apps/backend/out/index.js",
"knip": "knip",
"test": "vitest",
"test:ui": "yarn workspace voiden-ui test"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@testing-library/dom": "^10.4.1",
"@types/node": "^22.0.0",
"dependency-cruiser": "^16.3.6",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"husky": "^8.0.3",
"knip": "^5.25.2",
"lint-staged": "^15.2.0",
"prettier": "3.3.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"use-resize-observer": "^9.1.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,css,md, tsx, ts}": "prettier --write",
"**/*.{js,jsx,ts,tsx}": [
"bash -c tsc --noEmit"
]
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"core-extensions"
]
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@radix-ui/react-context-menu": "^2.2.12",
"@testing-library/react": "^16.3.1",
"fp-ts": "^2.16.9",
"remark-gfm": "^4.0.1",
"testing-library": "^0.0.2"
},
"resolutions": {
"fast-xml-parser": "5.5.7",
"form-data": "^4.0.4",
"pbkdf2": "^3.1.3",
"sha.js": "^2.4.12",
"jsonpath-plus": ">=10.3.0",
"rollup": ">=4.38.0",
"tar": ">=7.5.11",
"linkifyjs": ">=4.1.1",
"flatted": ">=3.3.2",
"undici": ">=7.24.0",
"lodash": ">=4.18.1",
"lodash-es": ">=4.18.1",
"picomatch": "4.0.4",
"@xmldom/xmldom": "0.8.12",
"path-to-regexp@0.1.12": "0.1.13",
"immutable@^3.x.x": "3.8.3",
"immutable@^5.0.2": "5.1.5",
"minimatch@3.1.2": "3.1.4",
"axios": ">=1.15.0",
"glob@^10.2.2": "10.5.0",
"glob@^10.3.7": "10.5.0",
"glob@^10.3.10": "10.5.0",
"dompurify": ">=3.4.0",
"protobufjs": ">=7.5.5",
"follow-redirects": ">=1.16.0",
"markdown-it": ">=14.1.1",
"qs": ">=6.14.2",
"prismjs": ">=1.30.0",
"tmp": ">=0.2.4",
"@babel/helpers": ">=7.26.10",
"@babel/runtime": ">=7.26.10",
"@babel/runtime-corejs3": ">=7.26.10",
"mdast-util-to-hast": ">=13.2.1",
"@smithy/config-resolver": ">=4.4.0",
"diff@^4": "4.0.4",
"bn.js@^4": "4.12.3",
"bn.js@^5": "5.2.3",
"js-yaml@^3": "3.14.2",
"yaml@^1": "1.10.3"
}
}