This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
100 lines (100 loc) · 3.77 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
{
"name": "kards-social",
"description": "Kards is an open source social media platform.",
"author": "The Open Source Company",
"license": "AGPL-3.0-only",
"scripts": {
"dev": "concurrently --names \"kards,surrl\" --hide 1 \"pnpm run dev-run-next\" \"pnpm run dev-run-surreal\"",
"debug": "concurrently --names \"kards,surrl\" \"pnpm run dev-run-next\" \"pnpm run dev-run-surreal\"",
"dev-run-next": "cross-env NEXT_PUBLIC_ENV=\"dev\" next dev -p 12000",
"dev-run-surreal": "surreal start --log debug --user root --pass root --bind 0.0.0.0:12001 file:dev.db",
"ts": "tsc --watch",
"lint": "eslint . --ext ts --ext tsx --max-warnings 0",
"storybook": "start-storybook -p 12002 -s ./public",
"deploy": "export NEXT_PUBLIC_DEPLOYMENT_STATUS=\"deployed\" SURREAL_NAMESPACE=kards-deployment_$CF_PAGES_BRANCH && export NEXT_PUBLIC_SURREAL_NAMESPACE=$SURREAL_NAMESPACE && node ./cli/predeploy.mjs && pnpm build",
"build": "next build && next export && next-sitemap && pnpm build-storybook && rm -rf out/dev",
"build-storybook": "build-storybook -s public -o out/developers/storybook --modern --docs"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@mui/material": "^5.11.10",
"@next/env": "^12.3.4",
"@tanstack/react-query": "^4.24.9",
"@theopensource-company/awaited-surrealdb": "^0.5.1",
"axios": "^0.27.2",
"history": "^5.3.0",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"moment": "^2.29.4",
"next": "13.0.0",
"next-sitemap": "^3.1.52",
"query-string": "^7.1.3",
"ra-core": "^4.8.1",
"ra-data-json-server": "^4.8.1",
"react": "18.2.0",
"react-admin": "^4.8.1",
"react-admin-json-view": "^2.0.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-feather": "^2.0.10",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.1.5",
"react-image-crop": "^10.0.9",
"react-linkify": "1.0.0-alpha",
"react-media-hook": "^0.4.9",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.1",
"surrealdb.js": "^0.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@theopensource-company/surrealdb-cloudflare": "^1.0.4",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-linkify": "^1.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "8.23.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-unused-imports": "^2.0.0",
"mini-css-extract-plugin": "^2.7.2",
"node-fetch": "^3.3.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"require-from-string": "^2.0.2",
"sass": "1.54.5",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"typescript": "4.8.2",
"webpack": "^5.75.0"
},
"peerDependencies": {
"css-loader": "^6.7.2",
"require-from-string": "^2.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.75.0"
}
}