forked from Smithed-MC/UX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.69 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
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
{
"name": "ux",
"version": "0.1.0",
"description": "Monorepo for Smithed-MC UX",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"test": "turbo run test --filter=api",
"lint": "turbo run lint",
"tauri:dev": "turbo run dev --filter=desktop",
"web:dev": "turbo run dev --filter=website",
"web:serve": "turbo run serve --filter=website",
"api:dev": "turbo run dev --filter=api",
"sync:dev": "turbo run dev"
},
"author": "",
"license": "ISC",
"workspaces": [
"packages/*",
"apps/*",
"platforms/*"
],
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.15",
"@types/file-saver": "^2.0.5",
"@types/js-cookie": "^3.0.6",
"@types/pngjs": "^6.0.1",
"@types/react": "^18.0.25",
"@types/react-helmet": "^6.1.6",
"@types/semver": "^7.3.13",
"@types/supertest": "^2.0.12",
"@types/tap": "^15.0.7",
"c8": "^7.12.0",
"concurrently": "^7.6.0",
"cookie": "^0.6.0",
"prettier": "^3.2.5",
"supertest": "^6.3.3",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@fastify/caching": "^8.2.0",
"@fastify/compress": "^6.5.0",
"@fastify/cors": "^8.2.0",
"@fastify/redis": "^6.1.0",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@fastify/type-provider-typebox": "^2.4.0",
"@loadable/component": "^5.16.3",
"@mgcrea/fastify-request-logger": "^1.4.0",
"@mgcrea/pino-pretty-compact": "^1.3.0",
"@octokit/core": "^4.2.0",
"@reduxjs/toolkit": "^1.9.5",
"@sinclair/typebox": "^0.25.20",
"@types/pako": "^2.0.3",
"@vitejs/plugin-react": "^4.0.0",
"abstract-cache": "^1.0.1",
"abstract-cache-redis": "^2.0.0",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"dotenv": "^16.0.3",
"esmock": "^2.1.0",
"express": "^4.18.2",
"fastify": "^4.11.0",
"file-saver": "^2.0.5",
"firebase": "^9.14.0",
"firebase-admin": "^11.4.1",
"hash.js": "^1.1.7",
"ioredis": "^5.3.0",
"jose": "^4.11.2",
"js-cookie": "^3.0.5",
"markdown-to-jsx": "^7.2.1",
"node-fetch": "^3.3.0",
"pako": "^2.1.0",
"pngjs": "^6.0.0",
"python-shell": "^3.0.1",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.1.1",
"react-router-dom": "^6.12.1",
"redux-persist": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"remark-inline-links": "^6.0.1",
"remark-remove-comments": "^1.0.1",
"semver": "^7.3.8",
"sharp": "^0.33.4",
"turbo": "^1.10.12",
"typesense": "^1.7.2",
"vite": "^4.3.9",
"vite-plugin-svgr": "^3.2.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": false
}
}