forked from airjp73/rvf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "remix-validated-form-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build-docs": "turbo run build --scope=docs --include-dependencies --no-deps --force",
"typecheck": "turbo run typecheck",
"sample-app": "yarn dev --scope=sample-app",
"test-app": "yarn dev --scope=test-app",
"docs": "yarn dev --scope=docs --include-dependencies",
"dev": "turbo run dev --parallel --include-dependencies --no-cache",
"test": "turbo run test",
"vitest": "vitest",
"vitest:run": "vitest run",
"lint": "eslint --cache .",
"prettier": "prettier --cache --check .",
"build": "turbo run build",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@remix-run/vercel": "^1.9.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"vite": "^4.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"prettier": "^2.7.1",
"turbo": "latest",
"vitest": "^0.25.8"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --cache --write",
"eslint --cache --fix"
]
}
}