-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.56 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
{
"private": true,
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"check-duplicates": "npx ts-node ./tests/checkDuplicates.ts",
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"start": "remix-serve build"
},
"dependencies": {
"@react-chess/chessground": "^1.2.4",
"@remix-run/node": "^1.16.1",
"@remix-run/react": "^1.16.1",
"@remix-run/vercel": "^1.16.1",
"@tailwindcss/typography": "^0.5.4",
"@vercel/node": "^2.0.0",
"chess.js": "^0.12.1",
"daisyui": "^2.17.0",
"dayjs": "^1.11.5",
"firebase": "^9.8.4",
"plausible-tracker": "^0.3.8",
"react": "^17.0.2",
"react-chessboard": "^1.2.5",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-hotkeys-hook": "^3.4.7",
"react-icons": "^4.11.0",
"styled-components": "^5.3.5",
"theme-change": "^2.1.0"
},
"devDependencies": {
"@remix-run/dev": "^1.16.1",
"@remix-run/eslint-config": "^1.6.5",
"@remix-run/serve": "^1.16.0",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/styled-components": "^5.1.25",
"eslint": "^8.20.0",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.1.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14"
}
}