-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.44 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ecthelion",
"version": "1.4.0",
"description": "A frontend for Octyne.",
"main": "pages/index.tsx",
"repository": "https://github.com/retrixe/ecthelion.git",
"author": "Ibrahim Ansari <ansari.ibrahim1@gmail.com>",
"license": "Apache-2.0",
"private": true,
"packageManager": "yarn@4.11.0",
"scripts": {
"test": "vitest",
"dev": "next --webpack",
"build": "next build --webpack",
"start": "next start",
"export": "NEXT_OUTPUT=export next build --webpack $@ && echo > out/.placeholder",
"prepare": "husky install",
"lint": "tsc --noEmit && oxlint --type-aware --deny-warnings && eslint --cache --cache-strategy content --cache-location .next/ . && biome check"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-markdown": "^6.3.3",
"@codemirror/language-data": "^6.5.1",
"@codemirror/view": "^6.38.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@lezer/highlight": "^1.2.1",
"@mui/icons-material": "^7.3.5",
"@mui/material": "^7.3.5",
"@uiw/codemirror-theme-material": "^4.24.0",
"@uiw/react-codemirror": "^4.24.0",
"comment-json": "^4.4.1",
"ky": "^1.14.0",
"lodash": "^4.17.21",
"next": "^16.0.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-window": "^2.2.3",
"strip-ansi": "^7.1.2"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@biomejs/biome": "^2.3.6",
"@eslint/js": "^9.39.1",
"@next/eslint-plugin-next": "^16.0.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"next-router-mock": "^1.0.4",
"oxlint": "^1.13.0",
"oxlint-tsgolint": "^0.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vite": "^7.2.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.10"
}
}