-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.29 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
{
"name": "anigreen",
"description": "your week in anime 🌠",
"author": "itsMapleLeaf",
"license": "MIT",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "cross-env NODE_ENV=development run-p --race --print-label dev:*",
"dev:remix": "remix dev",
"dev:graphql": "pnpm run graphql --watch",
"dev:routes": "remix-routes -w",
"build": "remix build",
"start": "cross-env NODE_ENV=production remix-serve build",
"test": "echo todo lol",
"lint": "pnpm run graphql && remix-routes && eslint --ext js,ts,tsx . && tsc -b",
"format": "prettier --write . && eslint --ext js,ts,tsx . --fix",
"graphql": "graphql-codegen --config graphql.config.json"
},
"dependencies": {
"@fontsource/fira-sans": "^4.5.10",
"@heroicons/react": "^1.0.6",
"@itsmapleleaf/configs": "^2.0.0",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-tooltip": "^1.0.5",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@vercel/remix": "^1.15.0",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.0.3",
"framer-motion": "^10.10.0",
"graphql": "^16.6.0",
"isbot": "latest",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"remix-routes": "^1.4.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.0",
"@graphql-codegen/typescript": "3.0.3",
"@graphql-codegen/typescript-operations": "3.0.3",
"@playwright/test": "^1.32.2",
"@remix-run/dev": "^1.15.0",
"@remix-run/serve": "^1.15.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/eslint": "^8.37.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"eslint": "^8.37.0",
"msw": "^1.2.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.32.2",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.3",
"vitest": "^0.29.8"
},
"sideEffects": false,
"prettier": "@itsmapleleaf/configs/prettier"
}