-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "ecthelion",
"version": "1.3.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.5.3",
"scripts": {
"test": "vitest",
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"prepare": "husky install",
"lint": "eslint . && tsc --noEmit"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/language-data": "^6.5.1",
"@codemirror/view": "^6.36.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@lezer/highlight": "^1.2.1",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@uiw/codemirror-theme-material": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"ky": "^1.7.4",
"next": "^15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-virtualized-auto-sizer": "^1.0.25",
"react-window": "^1.8.11",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^15.1.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"next-router-mock": "^0.9.13",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}