-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.79 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
{
"name": "nhl-remix",
"version": "1.0.0",
"private": true,
"description": "A simple app to show NHL games and scores/details",
"type": "module",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "run-s -n 'generate:css -- --minify'",
"build:remix": "remix vite:build",
"dev": "run-p -n dev:*",
"dev:css": "run-s -n 'generate:css -- --watch'",
"dev:remix": "remix vite:dev",
"generate:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"lint": "run-s 'lint:*'",
"lint:es": "eslint app --max-warnings=0",
"lint:style": "prettier 'app/**/*.(ts|tsx)' --check",
"start": "run-s -n dev",
"test": "TZ=UTC vitest run --coverage",
"test:ci": "TZ=UTC vitest run",
"typecheck": "tsc -b",
"storybook": "run-p -s 'dev:css' 'storybook:run'",
"storybook:run": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@brightcove/react-player-loader": "^1.4.2",
"@heroicons/react": "^2.1.5",
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@vercel/analytics": "^1.0.2",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"isbot": "^3.6.5",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-aria-components": "^1.4.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@headlessui/react": "^1.7.9",
"@headlessui/tailwindcss": "^0.1.2",
"@remix-run/dev": "^2.14.0",
"@remix-run/testing": "^2.14.0",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"msw": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"storybook": "^7.5.1",
"tailwindcss": "^3.0.23",
"tailwindcss-react-aria-components": "^1.1.6",
"typescript": "^5.1.6",
"typescript-eslint": "^8.13.0",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "20.18.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}