-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 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
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
82
83
84
{
"name": "@joonassandell/ui-lab",
"description": "User interface laboratory by Joonas Sandell",
"version": "0.1.11",
"type": "module",
"author": {
"name": "Joonas Sandell",
"url": "https://joonassandell.com"
},
"packageManager": "[email protected]",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist"
],
"scripts": {
"build:lib:ts": "tsup --tsconfig tsconfig.lib.json",
"build:lib:styles": "tailwindcss -c ./tailwind.config.lib.ts -i ./stylesheets/index.css -o ./dist/index.css --minify",
"build:lib": "run-s build:lib:*",
"build": "next build",
"build:ignore": "IGNORE_ERRORS=true next build",
"check": "bun run lint && bun run typecheck",
"dev": "next dev --port 3001",
"dev:lib": "run-p watch:lib:*",
"lint:fix": "next lint --fix",
"lint": "next lint",
"start": "next start --port 3001",
"preview": "bun run build && bun run start",
"preview:ignore": "bun run build:ignore && bun run start",
"typecheck": "tsc --pretty --noEmit",
"watch:lib:ts": "bun run build:lib:ts --watch",
"watch:lib:styles": "tailwindcss -c ./tailwind.config.lib.ts -i ./stylesheets/index.css -o ./dist/index.css --watch"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.21",
"next": "^14",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2",
"tailwindcss": "^3"
},
"devDependencies": {
"@types/node": "^22",
"@types/react-dom": "^18",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"autoprefixer": "^10",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"eslint": "^8",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3",
"tailwindcss-scoped-preflight": "^3",
"tsup": "^8",
"typescript": "^5"
},
"peerDependencies": {
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.21",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2",
"tailwindcss": "^3"
},
"engines": {
"node": "20.x"
}
}