-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.06 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.06 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
{
"name": "timz.dev",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "concurrently \"next dev\" \"npm run storybook\"",
"dev:docs": "echo Start both the local development server and the storybook server. Note: using `next-remote-watch` lets you hot reload on change to non-source-code files.",
"build": "next build",
"build:analyse": "ANALYZE=true npm run build",
"build:analyse:docs": "echo Show the webpack-bundle-analyzer treemap",
"analyse": "source-map-explorer .next/static/**/*.js",
"start": "next start",
"start:docs": "echo Serve the built files",
"test": "jest",
"test:watch": "jest --watch",
"test:generate-output": "jest --json --outputFile=artifacts/.jest-test-results.json || true",
"test:docs": "echo The Jest results are outputted to a JSON file so that Storybook can read it and report the test results for each component",
"e2e": "npm run cy:test",
"cy:test": "cypress run --headed --no-exit --browser chrome",
"cy:headless": "cypress run --browser chrome",
"cy:open": "cypress open --e2e --browser chrome",
"lint": "next lint",
"storybook": "npm run test:generate-output && BROWSER=\"none\" start-storybook --quiet -p 6006 || true",
"build-storybook": "build-storybook -o docs",
"deploy-storybook": "storybook-to-ghpages",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@next/bundle-analyzer": "^16.1.6",
"@types/remark-prism": "^1.3.7",
"@types/signale": "^1.4.7",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"axios": "^1.13.6",
"esbuild": "^0.27.3",
"esbuild-sass-plugin": "^3.6.0",
"framer-motion": "^12.35.0",
"gray-matter": "^4.0.3",
"katex": "^0.16.37",
"mdx-bundler": "^10.1.1",
"next": "^16.1.6",
"prism-react-renderer": "^2.4.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-tsparticles": "^1.40.0",
"rehype-katex": "^7.0.1",
"rehype-mdx-import-media": "^1.4.0",
"remark-math": "^6.0.0",
"remark-prism": "^1.3.6",
"sharp": "^0.34.5",
"signale": "^1.4.0",
"tsparticles": "^1.34.0",
"typewriter-effect": "^2.22.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-jest": "^9.1.12",
"@storybook/addon-links": "^10.2.16",
"@storybook/addons": "^7.6.17",
"@storybook/builder-webpack5": "^10.2.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^10.2.16",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.6.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"babel-loader": "^10.1.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.4",
"cypress": "^15.11.0",
"eslint": "10.0.3",
"eslint-config-next": "16.1.6",
"eslint-plugin-storybook": "^10.2.16",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"next-remote-watch": "^2.0.0",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"source-map-explorer": "^2.5.3",
"storybook-addon-sass-postcss": "^0.4.0",
"storybook-react-context": "^0.10.0",
"style-loader": "^4.0.0",
"typescript": "5.9.3"
}
}