-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.17 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
{
"name": "tools",
"private": true,
"version": "1.0.3",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:format": "prettier --check './**/*.{js,ts,tsx,json,css}'",
"format": "prettier --write './**/*.{js,ts,tsx,json,css}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --watch",
"test:ci": "jest"
},
"dependencies": {
"@primer/octicons-react": "19.21.2",
"@tailwindcss/forms": "0.5.11",
"@tanstack/react-query": "^4.29.12",
"@vercel/og": "0.8.6",
"dayjs": "1.11.19",
"next": "15.5.12",
"next-pwa": "5.6.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-use": "17.6.0",
"sharp": "0.34.5",
"uuid": "11.1.0"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@storybook/addon-actions": "8.6.15",
"@storybook/addon-essentials": "8.6.14",
"@storybook/addon-interactions": "8.6.14",
"@storybook/addon-links": "8.6.15",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "8.6.15",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "8.6.15",
"@storybook/testing-library": "0.2.2",
"@types/gtag.js": "0.0.20",
"@types/jest": "29.5.14",
"@types/node": "22.19.11",
"@types/react": "19.2.14",
"@types/react-dom": "^19.0.0",
"@types/uuid": "11.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "10.4.24",
"babel-loader": "10.0.0",
"eslint": "9.39.2",
"eslint-config-next": "15.5.12",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-tailwindcss": "3.18.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.5.6",
"prettier": "3.6.2",
"storybook": "8.6.17",
"tailwindcss": "3.4.19",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.29.3",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120
}
}