-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
64
65
66
67
68
{
"name": "showcase",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "elevenlabs",
"url": "https://twitter.com/elevenlabs"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm run images:watch & pnpm --filter=www dev",
"build": "pnpm run images:sync && pnpm --filter=www build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preview": "turbo run preview",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"check": "turbo lint typecheck format:check",
"images:sync": "node ./scripts/sync-images.cjs",
"images:watch": "node ./scripts/sync-images.cjs --watch"
},
"packageManager": "pnpm@9.0.6",
"dependencies": {
"@babel/core": "^7.22.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.25.1",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.9",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "3.13.1",
"motion": "^12.12.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"puppeteer": "^23.6.0",
"tailwindcss": "3.4.18",
"tailwindcss-animate": "^1.0.5",
"tsx": "^4.1.4",
"turbo": "^1.9.9",
"vite": "^5.4.15",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.1.9"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/node": "^20.11.27",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"start-server-and-test": "^2.0.12",
"typescript": "^5.5.3"
}
}