-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.57 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "cdc.cy",
"version": "1.0.0",
"description": "Cyprus Developer Communtiy",
"bugs": {
"url": "https://github.com/cyprus-developer-community/cdc.cy/issues"
},
"license": "MIT",
"author": "Patrick Heneise <yassas@heneise.co> (https://heneise.co)",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)",
"Marios Simou (https://github.com/MarioSimou)"
],
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "pnpm run generate:css --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "pnpm generate:css -w",
"dev:remix": "remix dev -p 3001",
"generate:css": "unocss './app/**/*.{jsx,tsx}' -o './app/styles/uno.css'",
"start": "remix-serve build",
"typecheck": "tsc -b",
"prettier": "prettier .",
"prettier:check": "pnpm prettier --check",
"prettier:format": "pnpm prettier -l --write",
"lint:check": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:format": "pnpm lint:check --fix",
"test:unit": "vitest run",
"test:unit:watch": "vitest dev",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"prepare": "is-ci || husky install",
"github:codegen": "graphql-codegen -c ./codegen.ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx}": "pnpm prettier:format",
"*.{ts,tsx,js,jsx}": "pnpm lint:format"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@octokit/auth-app": "^6.0.0",
"@octokit/graphql": "^7.0.1",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"@remix-run/server-runtime": "^1.19.3",
"@types/marked": "^5.0.1",
"@zentered/issue-forms-body-parser": "^2.1.4",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"graphql": "^16.8.0",
"marked": "^8.0.0",
"node-cache": "^5.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-schemaorg": "^2.0.0",
"remix-image": "^1.4.0",
"schema-dts": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@playwright/test": "^1.37.1",
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@unocss/cli": "^0.55.7",
"@unocss/reset": "^0.55.7",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"husky": "8.0.3",
"is-ci": "^3.0.1",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"msw": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"unocss": "^0.55.7",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"engines": {
"node": ">=18"
},
"release": {
"branches": [
"main"
]
},
"volta": {
"node": "18.17.1"
}
}