-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "mugen-protopedia",
"private": true,
"version": "2026.07.15",
"description": "'Mugen ProtoPedia' is a web application that securely connects to the ProtoPedia API (v2) to retrieve and display a single, randomly selected prototype whenever the user requests one.",
"engines": {
"node": "24.x"
},
"keywords": [
"ProtoPedia",
"Viewer",
"TypeScript",
"Next.js"
],
"author": "F88 <685250+F88@users.noreply.github.com>",
"license": "MIT",
"homepage": "https://github.com/F88/mugen-protopedia#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/F88/mugen-protopedia.git"
},
"bugs": {
"url": "https://github.com/F88/mugen-protopedia/issues"
},
"scripts": {
"clean": "rimraf .next",
"dev": "next dev",
"build": "cross-env TAILWIND_DISABLE_OXIDE=1 NEXT_DISABLE_TAILWIND_OXIDE=1 next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate-pwa-assets": "pwa-assets-generator",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "cross-env TAILWIND_DISABLE_OXIDE=1 NEXT_DISABLE_TAILWIND_OXIDE=1 vitest run",
"test:coverage": "cross-env TAILWIND_DISABLE_OXIDE=1 NEXT_DISABLE_TAILWIND_OXIDE=1 vitest run --coverage",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"tool:save-sample-prototypes": "tsx tools/get-sample-data.ts",
"qa:images": "tsx tools/image-qa/cli.ts",
"qa:icons": "tsx tools/image-qa/cli.ts --preset pwa-icons",
"qa:screenshots": "tsx tools/image-qa/cli.ts --preset screenshots"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-checkbox": "^1.3.5",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-progress": "^1.1.10",
"@radix-ui/react-slider": "^1.4.2",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tooltip": "^1.2.10",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"he": "^1.2.0",
"lucide-react": "^1.22.0",
"next": "16.2.9",
"pino": "^10.3.1",
"promidas": "3.0.1",
"promidas-utils": "3.2.1",
"protopedia-api-v2-client": "3.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"recharts": "^3.9.0",
"swr": "^2.4.2",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@faker-js/faker": "^10.5.0",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/nextjs": "^10.4.6",
"@storybook/nextjs-vite": "^10.4.6",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/he": "^1.2.3",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitest/coverage-v8": "^4.1.9",
"autoprefixer": "^10.5.2",
"cross-env": "^10.1.0",
"eslint": "^10.6.0",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.4.6",
"glob": "^13.0.6",
"jsdom": "^29.1.1",
"lightningcss": "^1.32.0",
"msw": "^2.14.6",
"node-fetch": "^3.3.2",
"pino-pretty": "^13.1.3",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"rimraf": "^6.1.3",
"safe-regex": "^2.1.1",
"sharp": "^0.35.2",
"storybook": "^10.4.6",
"tailwindcss": "^4.3.2",
"tsx": "^4.22.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
},
"optionalDependencies": {
"@tailwindcss/oxide": "^4.3.2",
"sharp": "^0.35.2"
}
}