-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.84 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
{
"name": "ourflags.lgbt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"clean": "rimraf data/flags data/categories",
"generate-data": "tsx scripts/generate-data.ts",
"start": "next start",
"license-check": "license-check-and-add check -f .github/license-check/config.json -r 2023 \"<Your Name Here>\"",
"license-check:fix": "license-check-and-add add -f .github/license-check/config.json -r 2023 \"<Your Name Here>\"",
"lint": "run-p lint:*",
"lint:next": "next lint",
"lint:prettier": "prettier -c \"{app,pages,lib,scripts}/**/*.{ts,tsx}\"",
"lint-fix": "run-p lint-fix:*",
"lint-fix:next": "next lint --fix",
"lint-fix:prettier": "prettier --write \"{app,pages,lib,scripts}/**/*.{ts,tsx}\"",
"test": "jest",
"test:dev": "jest --watch"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.1",
"@fontsource-variable/inter": "^5.0.16",
"@fontsource/inter": "^5.0.16",
"@fontsource/permanent-marker": "^5.0.8",
"@next/font": "^14.1.0",
"@resvg/resvg-js": "^2.6.0",
"@types/node": "^20.11.14",
"@types/react": "^18.2.49",
"@types/react-dom": "^18.2.18",
"@vercel/og": "^0.6.2",
"clsx": "^2.1.0",
"common-tags": "^1.8.2",
"culori": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"lucide-react": "^0.320.0",
"next": "^14.1.0",
"p-queue": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.5.0",
"rehype-react": "^8.0.0",
"rehype-sanitize": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sharp": "^0.33.2",
"typescript": "^5.3.3",
"unified": "^11.0.4",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.0",
"@types/common-tags": "^1.8.4",
"@types/culori": "^2.0.4",
"@types/jest": "^29.5.11",
"@types/rimraf": "^4.0.5",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.17",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gray-matter": "^4.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-check-and-add": "^4.0.5",
"npm-run-all": "^4.1.5",
"ora": "^8.0.1",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0"
}
}