-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "jakes-digital-garden",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check:format": "prettier --check src",
"check:lint": "next lint",
"check:types": "tsc --pretty --noEmit",
"check:styles": "stylelint 'src/**/*.tsx'",
"clean:modules": "rm -rf node_modules",
"clean": "rm -rf .next && rm -rf node_modules && pnpm i",
"format": "prettier --write .",
"lint:fix": "next lint --fix",
"styles:fix": "stylelint 'src/**/*.tsx' --fix",
"test:all": "pnpm run check:format && pnpm run check:styles && pnpm run check:lint && pnpm run check:types && pnpm run build",
"prepare": "husky || true"
},
"dependencies": {
"@ariakit/react": "^0.4.15",
"@linaria/core": "^6.2.0",
"@linaria/react": "^6.2.1",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.1.5",
"@next/mdx": "^15.1.5",
"@tanstack/react-query": "^5.64.1",
"@tanstack/react-query-devtools": "^5.64.1",
"@tcgdex/sdk": "^2.6.0",
"@wyw-in-js/babel-preset": "^0.5.5",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"emojibase": "^16.0.0",
"emojibase-data": "^16.0.2",
"emojibase-regex": "^16.0.0",
"gray-matter": "^4.0.3",
"lodash.filter": "^4.6.0",
"milliseconds": "^1.0.3",
"motion": "^11.18.1",
"next": "15.0.2",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^5.0.0",
"next-with-linaria": "^0.7.0",
"pokenode-ts": "^1.20.0",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react-icons": "^5.4.0",
"rehype-prism-plus": "^2.0.0",
"remark-smartypants": "^3.0.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@linaria/babel-preset": "^5.0.4",
"@linaria/stylelint-config-standard-linaria": "^6.2.0",
"@linaria/webpack-loader": "^5.0.4",
"@tanstack/eslint-plugin-query": "^5.62.16",
"@types/lodash.filter": "^4.6.9",
"@types/mdx": "^2.0.13",
"@types/milliseconds": "^1.0.0",
"@types/node": "^22.10.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^9.18.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "3.3.3",
"stylelint": "^14.16.1",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}