-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "turing-frontend-test",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "panda codegen",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"format": "pnpm biome format --write src/**/*",
"lint": "biome lint",
"story": "cosmos --expose-imports",
"cosmos-export": "cosmos-export --expose-imports",
"test": "vitest",
"test:headed": "vitest --browser.headless false",
"test:node": "vitest --browser.enabled false",
"test:cov": "vitest run --coverage.enabled true"
},
"dependencies": {
"@ariakit/react": "^0.4.7",
"@hookform/resolvers": "^3.6.0",
"korean-regexp": "^1.0.12",
"next": "14.2.4",
"overlay-kit": "^1.0.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.0",
"react-toastify": "^10.0.5",
"tiny-invariant": "^1.3.3",
"valibot": "^0.35.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@pandacss/dev": "^0.41.0",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.0.0-beta.12",
"@vitest/coverage-istanbul": "^2.0.0-beta.12",
"@vitest/ui": "^2.0.0-beta.12",
"happy-dom": "^14.12.3",
"playwright": "^1.45.0",
"react-cosmos": "^6.1.1",
"react-cosmos-next": "^6.1.1",
"typescript": "^5",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.0-beta.12"
}
}