-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 KB
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
{
"name": "mal-explorer",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"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": "tailwindcss -i ./app/styles/base.css -o ./app/styles/app.css",
"updates": "npm-check -u --force",
"ts-check": "tsc --noEmit"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/vercel": "^1.6.5",
"@splitbee/web": "^0.3.0",
"@vercel/node": "^2.5.0",
"@xstate/react": "^3.0.0",
"clsx": "^1.2.1",
"daisyui": "^2.24.0",
"js-cookie": "^3.0.1",
"numeral": "^2.0.6",
"pkce-challenge": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"xstate": "^4.32.1",
"zod": "^3.18.0"
},
"devDependencies": {
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"@types/js-cookie": "^3.0.2",
"@types/numeral": "^2.0.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"autoprefixer": "^10.4.7",
"eslint": "^8.20.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-check": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwind-merge": "^1.5.1",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}