-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 KB
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
{
"name": "scriptlist-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run predev && next dev",
"build": "pnpm run prebuild && next build",
"start": "next start",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"predev": "ts-node --project ./tsconfig.node.json ./scripts/prebuild.tsx",
"prebuild": "cross-env NODE_ENV=production ts-node --project ./tsconfig.node.json ./scripts/prebuild.tsx",
"crowdin": "crowdin",
"crowdin:download": "node ./scripts/crowdin-download.js"
},
"dependencies": {
"@ant-design/charts": "^2.6.1",
"@ant-design/icons": "^6.0.0",
"@ant-design/nextjs-registry": "^1.3.0",
"@ant-design/static-style-extract": "^2.0.4",
"@iconify/react": "^6.0.0",
"@monaco-editor/react": "^4.7.0",
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"antd": "^6.3.1",
"dayjs": "^1.11.13",
"github-markdown-css": "^5.8.1",
"marked": "^16.1.1",
"monaco-editor": "^0.52.2",
"next": "16.1.6",
"next-intl": "^4.8.3",
"nextjs-toploader": "^3.8.16",
"prismjs": "^1.30.0",
"react": "^19.2.1",
"react-copy-to-clipboard": "^5.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.1",
"swr": "^2.3.4",
"xss": "^1.0.15"
},
"devDependencies": {
"@crowdin/cli": "^4.9.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5",
"typescript-eslint": "^8.46.0"
}
}