-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
95 lines (95 loc) · 3.08 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
{
"private": true,
"name": "nba-remix",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && npm run build:worker && remix build",
"build:css": "tailwindcss -i ./app/styles/tailwind.css -o ./app/tailwind.css --minify",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:worker\" \"npm run dev:remix\"",
"dev:remix": "remix dev",
"dev:css": "tailwindcss -i ./app/styles/tailwind.css -o ./app/tailwind.css --watch",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"generate": "plop --plopfile generators/plopfile.js",
"lint": "eslint app --max-warnings=0",
"prepare": "husky install",
"postinstall": "remix setup node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/**/*.{ts,tsx}": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"dependencies": {
"@remix-run/react": "^1.2.3",
"@remix-run/serve": "^1.2.3",
"@remix-run/vercel": "^1.2.3",
"cross-fetch": "^3.1.5",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.0",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"react-nba-logos": "^1.1.3",
"remix": "^1.2.3",
"remix-utils": "^2.7.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@remix-run/dev": "^1.2.3",
"@remix-run/eslint-config": "^1.2.3",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"classnames": "^2.3.1",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"msw": "^0.39.1",
"plop": "^3.0.5",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}