-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.03 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
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
121
122
123
124
125
126
127
{
"name": "landing-page",
"version": "2.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"dev.storybook": "storybook dev -p 6006",
"start": "next start",
"build": "next build",
"build.storybook": "storybook build",
"build.tailwind": "pnpm dlx tailwindcss -o ./src/styles/tailwind.css",
"build.docker": "pnpm move.prod && tail -f /dev/null",
"move.prod": "cp -fr out build && cp -fr storybook-static build",
"prepare": "husky install",
"__move-out-storybook": "cp out -fr out/_next/static/media/ .storybook/public && cp out -fr out/_next/static/css/ .storybook/public",
"exec.prod": "./bin/bash -c",
"release": "npx changeset",
"version": "npx changeset version",
"docker.prod": "docker compose up -f docker-compose.yaml --no-cache --log-level 0",
"test": "docker-compose -f docker-compose.test.yaml up",
"test.reset": "docker-compose -f docker-compose.test.yaml up --build",
"test.playwright": "pnpm playwright test",
"test.playwright.debug": "pnpm playwright test --debug",
"types.check": "pnpm dlx tsc *.ts /*.tsx --noEmit",
"check.eslint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs --quiet --fix"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"chart.js": "^4.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.269.0",
"mermaid": "^10.6.0",
"next": "13.4.19",
"postcss": "8.4.28",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-wrap-balancer": "^1.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animated": "^1.0.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs --quiet --fix",
"prettier --write"
],
"*.{md,mdx,mjs,yml,yaml,css}": [
"prettier --write"
],
"*.go": [
"pnpm --filter cli format"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
]
},
"pnpm": {
"overrides": {
"next@latest": "13.0.6"
}
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x",
"pnpm": "8.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@axe-core/playwright": "^4.8.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@next/eslint-plugin-next": "^13.5.6",
"@playwright/test": "^1.39.0",
"@storybook/addon-essentials": "^7.6.1",
"@storybook/addon-interactions": "^7.6.1",
"@storybook/addon-links": "^7.6.1",
"@storybook/addon-mdx-gfm": "^7.6.1",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.6.1",
"@storybook/manager-api": "^7.6.1",
"@storybook/nextjs": "^7.6.1",
"@storybook/react": "^7.6.1",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.1",
"@t3-oss/env-nextjs": "^0.7.1",
"@types/cytoscape": "^3.19.14",
"@types/eslint": "^8.44.6",
"@types/mdx": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"css-loader": "^6.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"storybook": "^7.6.1",
"style-loader": "^3.3.3",
"turbo": "^1.10.15",
"zod": "^3.22.4"
}
}