-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 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
{
"name": "vest-monorepo",
"scripts": {
"build": "vx build && yarn build:llms",
"test": "vx test run --typecheck",
"test:watch": "vx test",
"bench": "npx tsx vx/scripts/benchmark-reporter.ts --update",
"release": "vx release",
"format": "prettier -c .",
"lint": "eslint --cache .",
"prepare": "husky install",
"dev": "vx dev",
"website:start": "yarn workspace website start",
"build:llms": "node scripts/build-llms.js",
"website:build": "yarn build:llms && yarn workspace website build",
"postinstall": "husky install"
},
"homepage": "https://vestjs.dev",
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"vx": {},
"workspaces": [
"website",
"packages/*",
"./vx/",
"./vx/eslint-plugin-vest-internal"
],
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@types/lodash": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"eslint-plugin-vitest": "^0",
"husky": "^8.0.3",
"lint-staged": "^16.3.0",
"lodash": "^4.17.21",
"prettier": "^3.7.3",
"tsc": "^2.0.4",
"tsdown": "^0.17.0-beta.5",
"tslib": "^2.8.1",
"typescript": "^5.4.5",
"vitest": "^4.0.18",
"vx": "workspace:*",
"wait": "^0.4.2"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ealush/vest.git"
},
"version": "0",
"packageManager": "yarn@3.5.1",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss,html}": "prettier --write"
}
}