-
-
Notifications
You must be signed in to change notification settings - Fork 351
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "reactour",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch --parallel --no-cache",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=!./apps/docs && changeset publish"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint-plugin-prettier": "^5.5.5",
"jsdom": "^26.0.0",
"prettier": "^3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"turbo": "^2.8.7",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "pnpm@10.33.2",
"dependencies": {
"@changesets/cli": "2.29.8"
},
"pnpm": {
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "4.3.6"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"es5-ext",
"esbuild",
"sharp",
"unrs-resolver"
]
},
"repository": {
"type": "git",
"url": "https://github.com/elrumordelaluz/reactour.git"
},
"homepage": "https://github.com/elrumordelaluz/reactour#readme"
}