-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.54 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
{
"name": "orbit",
"scripts": {
"build:css": "tailwindcss -i css/app.css -o priv/static/assets/app.css",
"build:js": "NODE_PATH=deps/ esbuild js/app.tsx --bundle --tsconfig=tsconfig.json --outdir=priv/static/assets --external:/fonts/* --external:/images/*",
"format": "prettier . --write",
"test:eslint": "eslint .",
"test:format": "prettier . --check",
"test:jest": "jest",
"test:tsc": "tsc -p tsconfig.json",
"test": "npm run test:tsc && npm run test:jest && npm run test:eslint && npm run test:format",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fullstory/browser": "2.0.6",
"@restart/ui": "1.9.2",
"@sentry/fullstory": "3.0.0",
"@sentry/react": "8.47.0",
"@tailwindcss/forms": "0.5.9",
"esbuild": "0.24.2",
"luxon": "3.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"tailwindcss": "3.4.17",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/addon-onboarding": "8.4.7",
"@storybook/addon-themes": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/test": "8.4.7",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/luxon": "3.4.2",
"@types/node": "22.10.4",
"@types/phoenix": "1.6.6",
"@types/phoenix_live_view": "0.20.0",
"@types/w3c-web-nfc": "1.0.4",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-better-mutation": "1.5.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jest-dom": "5.5.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.11.1",
"eslint-plugin-testing-library": "7.1.1",
"fishery": "2.2.2",
"globals": "15.14.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"storybook": "8.4.7",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2",
"typescript-language-server": "4.3.3"
}
}