-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.14 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
{
"version": "0.0.0-unknown",
"private": true,
"sideEffects": [
"./app/tailwind.css"
],
"type": "module",
"scripts": {
"build": "react-router build",
"deploy": "fly deploy --remote-only",
"dev:react-router": "react-router dev",
"dev": "concurrently --raw npm:dev:*",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"check-format": "prettier --check .",
"test": "vitest",
"e2e": "playwright test --ui",
"dev:storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"dev:db": "docker-compose up -d",
"e2e:clean": "bun playwright/clean.ts",
"chromatic": "chromatic --only-changed",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.0.16",
"@internationalized/date": "^3.2.0",
"@paralleldrive/cuid2": "^2.2.0",
"@prisma/client": "^6.1.0",
"@react-router/node": "^7.0.0",
"@react-router/serve": "^7.0.0",
"accept-language-parser": "^1.5.0",
"cldr-core": "^44.1.0",
"date-fns": "^4.1.0",
"isbot": "^5.1.0",
"openid-client": "^5.4.0",
"react": "^18.2.0",
"react-aria": "^3.24.0",
"react-dom": "^18.2.0",
"react-number-format": "^5.1.4",
"react-router": "^7.0.0",
"react-stately": "^3.22.0",
"slugify": "^1.6.6",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.22",
"@playwright/test": "^1.49.1",
"@react-router/dev": "^7.0.0",
"@react-router/fs-routes": "^7.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@tailwindcss/forms": "^0.5.3",
"@types/accept-language-parser": "^1.5.3",
"@types/auth0": "^3.3.1",
"@types/node": "^22.10.5",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"auth0": "^4.1.0",
"autoprefixer": "^10.4.14",
"chromatic": "^11.0.8",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.23",
"postcss-loader": "^8.1.0",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.1.1",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^6.1.0",
"prop-types": "^15.8.1",
"storybook": "^8.0.0",
"tailwindcss": "^3.2.7",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^2.1.8"
},
"engines": {
"node": "22"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}