-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.41 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
{
"name": "pogly-standalone",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "^11.14.0",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"@reduxjs/toolkit": "^2.0.1",
"@tailwindcss/vite": "^4.1.4",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"browser-image-compression": "^2.0.2",
"css-filter-converter": "^1.0.109",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.501.0",
"markdown-it": "^14.1.0",
"marked": "^14.1.2",
"oidc-client-ts": "^3.4.1",
"prismjs": "^1.29.0",
"radix-ui": "^1.3.2",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.1",
"react-markdown-editor-lite": "^1.3.4",
"react-moveable": "^0.56.0",
"react-oidc-context": "^3.3.0",
"react-redux": "^9.0.4",
"react-router-dom": "6.4",
"react-scripts": "5.0.1",
"react-selecto": "^1.26.3",
"react-simple-code-editor": "^0.13.1",
"react-toastify": "^9.1.3",
"react-twitch-embed": "^3.0.2",
"react-zoom-pan-pinch": "^3.4.4",
"reakeys": "^2.0.3",
"remark-gfm": "^4.0.0",
"spacetimedb": "^1.7.0",
"sql.js": "^1.13.0",
"styled-components": "^6.1.6",
"tailwindcss": "^4.1.4",
"typescript": "^4.9.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"gen bindings": "spacetime generate --lang typescript --out-dir ./src/module_bindings --project-path ./server",
"dev": "vite"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
}
},
"eslintIgnore": [
"src/module_bindings/*"
],
"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/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.4",
"@types/prismjs": "^1.26.4",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^4.3.4",
"unplugin-fonts": "^1.3.1",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^4.3.2"
}
}