forked from Linkta-org/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.63 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
{
"name": "linkta",
"version": "1.0.0",
"description": "A learning tool for people to learn fast and easy",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "vite --config client/vite.config.js",
"dev:backend": "nodemon server/server.ts",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "vite build --config client/vite.config.js",
"build:backend": "tsc -p tsconfig.json",
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"start:frontend": "vite preview --config client/vite.config.js",
"start:backend": "node dist/server/server.js",
"lint": "eslint . --fix && prettier --write ."
},
"keywords": [
"education"
],
"author": "linkta",
"license": "MIT",
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.26",
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2",
"typescript-eslint": "^7.1.1",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.2",
"@google/generative-ai": "^0.2.1",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/themes": "^3.0.3",
"@tanstack/react-query": "^5.28.8",
"@tanstack/react-query-devtools": "^5.28.8",
"axios": "^1.6.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"firebase": "^10.9.0",
"firebase-admin": "^12.0.0",
"log4js": "^6.9.1",
"mongodb": "^6.4.0",
"mongoose": "^8.2.1",
"node": "^21.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"reactflow": "^11.11.3",
"ts-node": "^10.9.2",
"zustand": "^4.5.2"
}
}