-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.12 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
{
"name": "mantine-minimal-next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
},
"dependencies": {
"@fontsource/ibm-plex-sans": "^5.1.0",
"@mantine/core": "7.13.2",
"@mantine/hooks": "7.13.2",
"@roochnetwork/rooch-sdk": "0.2.7",
"@roochnetwork/rooch-sdk-kit": "0.2.7",
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.59.16",
"airtable": "^0.12.2",
"github-markdown-css": "^5.8.1",
"hast-util-to-html": "^9.0.3",
"mdast-util-to-hast": "^13.2.0",
"mdast-util-toc": "^7.1.0",
"next": "14.2.14",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"sass": "^1.80.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "20.14.8",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.0",
"typescript": "5.4.5"
}
}