-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
89 lines (89 loc) · 2.92 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
{
"name": "doomsday-wiki",
"private": true,
"version": "3.0.0",
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"build": "concurrently 'pnpm:build:*' --kill-others --names --prefix-colors auto --success first",
"build:next": "next build",
"build:scryfall": "pnpm run scryfall",
"dev": "concurrently 'pnpm:dev:*' --names --prefix-colors auto",
"dev:next": "next dev",
"dev:scryfall": "pnpm run scryfall:dev",
"lint": "pnpm run '/^lint:[^:]+$/'",
"lint:code": "eslint",
"lint:format": "pnpm run '/^lint:format:[^:]+$/'",
"lint:format:code": "prettier --check --log-level warn components/ hooks/ pages/ theme/ tools/",
"lint:format:puzzles": "prettier --check --log-level warn puzzles/",
"lint:format:scryfall": "prettier --check --log-level warn scryfall/",
"lint:format:wiki": "prettier --check --log-level warn markdown/",
"lint:prune": "knip",
"lint:typings": "tsc",
"lint:wiki": "markdownlint --config markdownlint.config.js markdown/",
"scryfall": "node ./scryfall/server.js",
"scryfall:dev": "DEBUG=1 pnpm run scryfall",
"start": "next start",
"test": "jest",
"test:coverage": "pnpm run test --coverage",
"test:watch": "pnpm run test --verbose --watchAll"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@fontsource/libre-baskerville": "5.1.1",
"@korumite/kiwi": "3.1.0",
"@mdi/js": "7.4.47",
"@mdi/react": "1.6.1",
"@mui/material": "6.4.1",
"@mui/system": "6.4.1",
"@mui/utils": "6.4.1",
"async-sema": "3.1.1",
"mana-font": "1.18.0",
"mdast-util-find-and-replace": "3.0.2",
"next": "14.2.23",
"plaiceholder": "3.0.0",
"posthog-js": "1.210.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intersection-observer": "9.15.1",
"react-markdown": "9.0.3",
"react-syntax-highlighter": "15.6.1",
"rehype-slug": "6.0.0",
"remark-directive": "3.0.1",
"remark-gfm": "4.0.0",
"remark-toc": "9.0.0",
"simple-icons": "14.3.0",
"unified": "11.0.4",
"unist-util-select": "5.1.0",
"unist-util-visit": "5.0.0",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@korumite/ts": "1.1.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@types/jest": "29.5.14",
"@types/mdast": "4.0.4",
"@types/node": "22.10.10",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-syntax-highlighter": "15.5.13",
"@types/unist": "3.0.3",
"concurrently": "9.1.2",
"eslint": "9.19.0",
"eslint-plugin-import": "2.31.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"knip": "5.43.3",
"markdownlint-cli": "0.44.0",
"mdast-util-directive": "3.1.0",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
}
}