-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "remix-validated-form-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/test-app",
"apps/docs"
],
"scripts": {
"build-docs": "turbo run build --filter=docs --include-dependencies --no-deps --force",
"typecheck": "turbo run typecheck",
"sample-app": "bun dev --filter=sample-app",
"test-app": "bun dev --filter=test-app",
"docs": "bun dev --filter=docs",
"dev": "turbo run dev",
"test": "turbo run test",
"vitest": "vitest",
"vitest:run": "vitest run",
"lint": "eslint --cache .",
"prettier": "prettier --cache --check .",
"format": "prettier --write .",
"build-packages": "turbo run build --filter=./packages/*",
"build": "turbo run build",
"prepare": "husky install"
},
"dependencies": {
"@rvf/core": "*",
"@sindresorhus/slugify": "^2.2.1",
"@testing-library/jest-dom": "^6.6.3",
"acorn": "^8.11.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"mdast-util-to-string": "^4.0.0",
"shiki": "^1.6.3",
"unist-util-visit": "^5.0.0",
"vite": "^5.2.10"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"eslint": "8.57.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.1.0",
"husky": "^7.0.4",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"turbo": "latest",
"typescript-eslint": "^7.8.0",
"vitest": "^1.5.2"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=20.0.0"
},
"packageManager": "bun@1.0.14"
}