-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "forms",
"version": "0.2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "yarn dev",
"dev": "turbo run dev",
"build": "turbo run build",
"serve": "turbo run serve",
"test": "turbo run test",
"typecheck": "turbo run type-check",
"clean": "find . -name '.turbo' -type d -prune -exec rm -rf {} + && find . -name 'node_modules' -type d -prune -exec rm -rf {} + && find . -name 'yarn.lock' -type f -delete",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"prerelease": "turbo run build",
"release": "changeset publish",
"build-storybook": "turbo run build-storybook"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@playwright/test": "^1.54.2",
"@types/react-dom": "^19",
"turbo": "^2.3.3"
},
"dependencies": {
"@changesets/cli": "^2.27.11",
"@remix-run/react": "^2.17.0",
"react-dom": "^19.1.1",
"react-phone-number-input": "^3.4.12",
"react-router-dom": "^7.6.2",
"react-stately": "^3.40.0"
},
"packageManager": "yarn@4.9.1"
}