-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"private": true,
"name": "@formulier/formulier",
"version": "0.0.0",
"license": "MIT",
"author": "Jasper Van Gestel <[email protected]> (https://github.com/vjee)",
"homepage": "https://vjee.github.io/formulier/",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,md,json}\"",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"coverage": "turbo run coverage",
"e2e": "turbo run e2e",
"docs:dev": "pnpm run --filter docs dev",
"docs:build": "pnpm run --filter docs build",
"docs:serve": "pnpm run --filter docs serve",
"update": "pnpm update --recursive --latest & pnpm dedupe"
},
"workspaces": [
"packages/*",
"config/*",
"examples/*",
"docs"
],
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@formulier/eslint-config": "workspace:*",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"cypress": "^13.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]"
}