-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.83 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@creative-tim/ui-monorepo",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "Creative Tim",
"email": "hello@creative-tim.com",
"url": "https://creative-tim.com"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:registry": "pnpm --filter=www build:registry && pnpm lint:fix && pnpm format:write -- --loglevel silent",
"registry:build": "pnpm --filter=www registry:build && pnpm lint:fix && pnpm format:write -- --loglevel silent",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"check": "turbo lint typecheck format:check",
"release": "changeset version",
"test:dev": "turbo run test --force",
"test": "start-server-and-test dev http://localhost:4000 test:dev",
"validate:registries": "pnpm validate:registries",
"dev:web": "pnpm --filter=www dev",
"mock": "pnpm --prefix mock-api run start",
"dev:stack": "concurrently -k -n MOCK,WEB -c magenta,cyan \"pnpm run mock\" \"pnpm run dev:web\"",
"test:unit": "vitest run --environment jsdom",
"test:e2e": "start-server-and-test dev:stack http://localhost:3000 \"playwright test\"",
"test:e2e:headed": "start-server-and-test dev:stack http://localhost:3000 \"playwright test --headed\"",
"test:all": "pnpm run test:unit && pnpm run test:e2e",
"test:e2e:report": "playwright show-report"
},
"packageManager": "pnpm@9.0.6",
"dependencies": {
"@babel/core": "^7.22.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.20.0",
"@playwright/test": "^1.56.0",
"@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.6",
"tailwindcss-animate": "^1.0.5",
"tsx": "^4.1.4",
"turbo": "^2.5.8",
"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"
}
}