-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.05 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
{
"name": "bookstore",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"build": "next build",
"build-storybook": "storybook build",
"check-types": "tsc --noemit",
"ci:db": "bun run ci:db:reset & bun run ci:db:seed",
"ci:db:seed": "dotenv -e .env.local -- ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed/run-ci.ts",
"ci:db:reset": "dotenv -e .env.local -- prisma migrate reset --skip-seed --force",
"db:seed": "dotenv -e .env.local -- prisma db seed",
"db:reset": "dotenv -e .env.local -- prisma migrate reset",
"dev": "next dev",
"eslint": "next lint",
"lint": "bun run eslint && bun run check-types",
"start": "next start",
"storybook": "storybook dev -p 6006",
"test": "TZ=UTC jest --coverage",
"test:e2e": "bun run ci:db && bun playwright test",
"test:watch": "TZ=UTC jest --watch"
},
"prisma": {
"seed": "ts-node -r tsconfig-paths/register --compiler-options {\"module\":\"CommonJS\"} prisma/seed/run-fake.ts"
},
"dependencies": {
"@prisma/client": "5.8.1",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@react-hook/debounce": "4.0.0",
"@tanstack/react-table": "8.12.0",
"async-retry": "1.3.3",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"cmdk": "1.0.0",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
"framer-motion": "11.0.15",
"lodash": "4.17.21",
"lucide-react": "0.314.0",
"next": "14.0.4",
"pino": "8.17.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.48.2",
"square": "35.1.0",
"tailwind-merge": "2.2.1",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"@playwright/test": "1.41.2",
"@storybook/addon-essentials": "7.6.10",
"@storybook/addon-interactions": "7.6.10",
"@storybook/addon-links": "7.6.10",
"@storybook/blocks": "7.6.10",
"@storybook/nextjs": "7.6.10",
"@storybook/react": "7.6.10",
"@storybook/test": "7.6.10",
"@testing-library/react": "14.2.2",
"@types/async-retry": "1",
"@types/jest": "29.5.11",
"@types/lodash": "4.14.202",
"@types/node": "20",
"@types/react": "18.2",
"@types/react-dom": "18.2",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"autoprefixer": "10.0.1",
"cross-fetch": "4.0.0",
"dotenv-cli": "7.3.0",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-mock-extended": "3.0.5",
"msw": "1.3.2",
"postcss": "8.4.32",
"prettier": "3.2.4",
"prisma": "5.8.1",
"storybook": "7.6.10",
"tailwindcss": "3.3.6",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}