-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
136 lines (136 loc) · 4.04 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
128
129
130
131
132
133
134
135
136
{
"name": "octochangelog-webapp",
"version": "1.0.0",
"private": true,
"engines": {
"pnpm": "^9.14.0"
},
"packageManager": "[email protected]",
"scripts": {
"start": "next start",
"dev": "next dev",
"dev:turbo": "pnpm dev --turbo",
"build": "next build",
"mock-api": "tsx ./src/mocks/http.ts",
"mock-api:watch": "tsx watch ./src/mocks/http.ts",
"type-check": "tsc --project tsconfig.validation.json",
"type-check:cypress": "tsc --project cypress/tsconfig.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"prettier-base": "prettier . --ignore-unknown --cache --log-level warn",
"format": "pnpm prettier-base --write",
"format:check": "pnpm prettier-base --check",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ci": "pnpm test -- --coverage",
"cy:open": "cypress open",
"cy:headless": "cypress run",
"e2e": "start-test mock-api http://localhost:9090 'pnpm build && pnpm start' http://localhost:3000 'pnpm cy:open --e2e'",
"e2e:dev": "start-test mock-api http://localhost:9090 'pnpm dev' http://localhost:3000 'pnpm cy:open --e2e'",
"e2e:headless": "start-test mock-api http://localhost:9090 'pnpm build && pnpm start' http://localhost:3000 'pnpm cy:headless'",
"gen:theme-typings": "chakra-cli tokens src/custom-theme.ts --strict-component-types --strict-token-types",
"prepare": "husky",
"postinstall": "pnpm gen:theme-typings"
},
"dependencies": {
"@chakra-ui/next-js": "2.2.0",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@octokit/auth-callback": "5.0.1",
"@octokit/rest": "21.0.2",
"@sentry/nextjs": "8.47.0",
"@tanstack/react-query": "5.62.8",
"@tanstack/react-query-devtools": "5.62.8",
"@vercel/analytics": "1.4.1",
"@vercel/speed-insights": "1.1.0",
"downshift": "9.0.8",
"framer-motion": "11.15.0",
"js-cookie": "3.0.5",
"lodash-es": "4.17.21",
"next": "15.1.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.4.0",
"rehype-highlight": "7.0.1",
"rehype-react": "8.0.0",
"remark-emoji": "5.0.1",
"remark-gfm": "4.0.0",
"remark-github": "12.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"remark-stringify": "11.0.0",
"semver": "7.6.3",
"unified": "11.0.5"
},
"devDependencies": {
"@chakra-ui/cli": "2.4.1",
"@chakra-ui/styled-system": "2.9.2",
"@chakra-ui/theme-tools": "2.1.2",
"@chakra-ui/utils": "2.0.14",
"@mswjs/http-middleware": "0.10.2",
"@octokit/openapi-types": "22.2.0",
"@tanstack/eslint-plugin-query": "5.62.1",
"@testing-library/cypress": "10.0.2",
"@testing-library/react": "16.1.0",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/happo-cypress": "4.1.4",
"@types/js-cookie": "3.0.6",
"@types/lodash-es": "4.17.12",
"@types/mdast": "4.0.4",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/semver": "7.5.8",
"@types/unist": "3.0.3",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.24",
"cors": "2.8.5",
"cypress": "13.17.0",
"eslint": "8.57.1",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-unicorn": "56.0.1",
"express": "4.21.2",
"happo-cypress": "4.2.0",
"happo-e2e": "3.2.0",
"happo.io": "11.0.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"msw": "2.5.2",
"prettier": "3.4.2",
"start-server-and-test": "2.0.9",
"ts-node": "10.9.2",
"tsx": "4.19.2",
"type-fest": "4.30.1",
"typescript": "5.7.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"pnpm": {
"overrides": {
"headers-polyfill": "4.0.3"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"msw": {
"workerDirectory": "public"
}
}