-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 4.08 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": "@sabertazimi/blog",
"version": "4.0.0",
"packageManager": "[email protected]",
"description": "A blog system based on React and Next",
"author": "sabertazimi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sabertazimi/blog"
},
"bugs": {
"url": "https://github.com/sabertazimi/blog/issues"
},
"keywords": [
"blog",
"next",
"react",
"mdx",
"antd",
"typescript",
"starter"
],
"browserslist": "last 2 versions",
"scripts": {
"build": "next build && next-sitemap --config sitemap.config.js",
"clone": "git clone https://$VERCEL_GIT_PROVIDER.com/$VERCEL_GIT_REPO_OWNER/$VERCEL_GIT_REPO_SLUG && rm -fr .git && cp -fr $VERCEL_GIT_REPO_SLUG/.git . && rm -fr $VERCEL_GIT_REPO_SLUG",
"dev": "next",
"e2e:chrome": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:chrome",
"e2e:firefox": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:firefox",
"e2e:ui": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:open",
"e2e:prepare": "pnpm build && pnpm serve",
"cypress:chrome": "cypress run --browser chrome",
"cypress:chromium": "cypress run --browser chromium",
"cypress:edge": "cypress run --browser edge",
"cypress:electron": "cypress run",
"cypress:firefox": "cypress run --browser firefox",
"cypress:open": "cypress open --browser electron --e2e",
"lint": "pnpm lint:style && pnpm lint:type-check",
"lint:style": "eslint . && stylelint ./styles/**/*.css",
"lint:type-check": "tsc --noEmit",
"lint:fix": "eslint . --fix && stylelint ./styles/**/*.css --fix",
"changeset": "commit-and-tag-version --dry-run -s",
"release": "commit-and-tag-version -s",
"serve": "next start",
"start": "pnpm dev",
"start:cypress": "start-server-and-test dev http://127.0.0.1:3000 cypress:open",
"test": "jest -o",
"test:all": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ant-design/nextjs-registry": "^1.0.2",
"@codesandbox/sandpack-react": "^2.19.10",
"@codesandbox/sandpack-themes": "^2.0.21",
"@octokit/rest": "^21.0.2",
"antd": "5.22.2",
"antd-style": "^3.7.1",
"classnames": "^2.5.1",
"framer-motion": "^11.11.17",
"gray-matter": "^4.0.3",
"katex": "^0.16.11",
"next": "^14.2.18",
"next-mdx-remote": "^5.0.0",
"next-nprogress-bar": "^2.3.15",
"next-pwa": "^5.6.0",
"next-sitemap": "^4.2.3",
"parse-numeric-range": "^1.3.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-live-runner": "^1.0.7",
"react-use": "^17.5.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-mdx-code-props": "^3.0.1",
"rehype-slug": "^6.0.0",
"remark-directive": "^3.0.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-github": "^12.0.0",
"remark-math": "^6.0.0",
"typed.js": "^2.1.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@dg-scripts/eslint-config": "^5.21.4",
"@dg-scripts/stylelint-config": "^5.21.4",
"@octokit/types": "^13.6.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/mdast": "^4.0.4",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/unist": "^3.0.3",
"commit-and-tag-version": "^12.5.0",
"cypress": "^13.16.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"start-server-and-test": "^2.0.8",
"stylelint": "^16.10.0",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}