-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4 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
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
122
{
"name": "junto",
"version": "0.1.0",
"private": true,
"dependencies": {
"@excalidraw/excalidraw": "^0.18.1",
"@lexical/code": "^0.45.0",
"@lexical/link": "^0.45.0",
"@lexical/list": "^0.45.0",
"@lexical/markdown": "^0.45.0",
"@lexical/react": "^0.45.0",
"@lexical/rich-text": "^0.45.0",
"@lexical/selection": "^0.45.0",
"@lexical/table": "^0.45.0",
"@lexical/utils": "^0.45.0",
"@tanstack/query-sync-storage-persister": "^5.101.1",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-query-persist-client": "^5.101.1",
"@tanstack/react-router": "^1.170.16",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"baseline-browser-mapping": "^2.10.38",
"caniuse-lite": "^1.0.30001799",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"dexie": "^4.4.4",
"image-extensions": "^1.1.0",
"is-hotkey": "^0.2.0",
"is-url": "^1.2.4",
"lexical": "^0.45.0",
"lodash": "^4.18.1",
"mdi-react": "^9.4.0",
"motion": "^12.42.0",
"notistack": "^3.0.2",
"prop-types": "^15.8.1",
"react": "^19",
"react-aria-components": "^1.18.0",
"react-beforeunload": "^2.7.0",
"react-compiler-runtime": "^1.0.0",
"react-dom": "^19",
"react-modal": "^3.16.3",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-tsconfig-paths": "^6.1.1",
"zustand": "^5.0.14"
},
"scripts": {
"start": "vite",
"build": "tsc -b && vite build",
"serve": "vite preview",
"test": "vite test",
"convert-gwiki": "bun scripts/convert-gwiki-to-md.mjs",
"test:convert-gwiki": "bun test scripts/convert-gwiki.test.mjs",
"eject": "react-scripts eject",
"cypress": "node_modules/.bin/cypress open",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"start-pro": "PORT=5763 react-scripts start"
},
"eslintConfig": {
"extends": "react-app",
"globals": {
"_": "writable"
},
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@lexical/headless": "0.45.0",
"@rolldown/plugin-babel": "^0.2.3",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-links": "^10.4.6",
"@storybook/preset-create-react-app": "^10.4.6",
"@storybook/react": "^10.4.6",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/router-plugin": "^1.168.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/babel__core": "^7.20.5",
"@types/gapi.client.drive": "3.0.15",
"babel-plugin-react-compiler": "^1.0.0",
"cypress": "^15.17.0",
"fake-indexeddb": "^6.2.5",
"markdown-it": "^14.2.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-multimd-table": "^4.2.3",
"react-test-renderer": "^19.2.7",
"sass-embedded": "^1.100.0",
"tailwindcss": "^4.3.1"
},
"jest": {},
"type": "module"
}