forked from itsMapleLeaf/anigreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.22 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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "anigreen",
"description": "your week in anime 🌠",
"author": "itsMapleLeaf",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "remix setup node",
"dev": "run-p --race --print-label remix-watch serve-dev graphql-watch",
"build": "pnpm graphql && remix build",
"test": "bash test.sh",
"start": "pnpm serve-prod",
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "pnpm lint -- --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"remix-watch": "remix watch",
"serve": "esmo server/main.mts | pino-colada --color",
"serve-dev": "cross-env NODE_ENV=development pnpm run serve",
"serve-prod": "cross-env NODE_ENV=production pnpm run serve",
"graphql": "graphql-codegen --config graphql.config.json",
"graphql-watch": "pnpm graphql -- --watch"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@itsmapleleaf/configs": "^1.1.2",
"@radix-ui/react-collapsible": "^0.1.5",
"@radix-ui/react-dropdown-menu": "^0.1.4",
"@radix-ui/react-tooltip": "^0.1.6",
"@remix-run/dev": "^1.1.3",
"@remix-run/express": "^1.1.3",
"@remix-run/node": "^1.1.3",
"@remix-run/react": "^1.1.3",
"@remix-run/server-runtime": "^1.1.3",
"@twind/preset-line-clamp": "^1.0.0-next.32",
"@twind/tailwind": "^1.0.0-next.32",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.2.2",
"dotenv": "^14.3.2",
"esno": "^0.14.0",
"express": "^4.17.2",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"pino": "^7.6.5",
"pino-colada": "^2.2.2",
"pino-http": "^6.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"remix": "^1.1.3",
"remix-typed": "^0.1.2",
"twind": "^1.0.0-next.32",
"zod": "^3.11.6"
},
"devDependencies": {
"@graphql-codegen/cli": "2.4.0",
"@graphql-codegen/typescript": "2.4.2",
"@graphql-codegen/typescript-operations": "2.2.2",
"@playwright/test": "^1.18.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^40.1.0",
"msw": "^0.36.8",
"npm-run-all": "^4.1.5",
"playwright": "^1.18.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vitest": "^0.2.5",
"wait-on": "^6.0.0"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"eslintConfig": {
"extends": [
"./node_modules/@itsmapleleaf/configs/eslint"
],
"ignorePatterns": [
"**/node_modules/**",
"**/generated/**",
"**/build/**",
"**/.cache/**",
"**/*.out.*"
],
"rules": {
"import/no-unused-modules": "off"
}
},
"prettier": "@itsmapleleaf/configs/prettier"
}