-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.14 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
{
"name": "starked-education-frontend",
"version": "1.0.0",
"description": "Frontend for StarkEd decentralized education platform",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"audit": "npm audit --audit-level=high",
"audit:fix": "npm audit fix",
"audit:ci": "npm audit --audit-level=high --omit=dev",
"prepare": "husky install",
"analyze": "ANALYZE=true next build",
"lighthouse": "lighthouse http://localhost:3000 --output=json --output-path=./lighthouse-report.json",
"performance-test": "npm run build && npm run lighthouse"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-slot": "^1.2.0",
"@react-three/drei": "^9.92.7",
"@react-three/fiber": "^8.15.12",
"@stellar/stellar-sdk": "^14.5.0",
"@tanstack/react-query": "^5.95.2",
"@tensorflow/tfjs": "^4.22.0",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.1",
"connectkit": "^1.7.0",
"d3": "^7.9.0",
"ethers": "^6.7.1",
"framer-motion": "^10.16.4",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.4.2",
"i18next-http-middleware": "^3.9.6",
"lucide-react": "^0.263.1",
"matter-js": "^0.20.0",
"next": "^14.0.0",
"next-i18next": "^15.2.0",
"next-themes": "^0.4.6",
"pyodide": "^0.24.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.55.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.5.0",
"recharts": "^3.8.0",
"socket.io-client": "^4.7.2",
"tailwind-merge": "^3.1.0",
"tailwindcss": "^3.3.3",
"three": "^0.160.0",
"viem": "^2.47.6",
"wagmi": "^2.19.5",
"web-vitals": "^4.2.4",
"y-monaco": "^0.1.4",
"y-websocket": "^1.5.0",
"yjs": "^13.6.7"
},
"devDependencies": {
"@sentry/webpack-plugin": "^2.10.2",
"@stellar/freighter-api": "^5.0.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/d3": "^7.4.3",
"@types/matter-js": "^0.20.2",
"@types/node": "^20.5.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.15",
"axe-core": "^4.12.1",
"eslint": "^8.47.0",
"eslint-config-next": "^14.0.0",
"husky": "^9.1.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^30.4.1",
"@next/bundle-analyzer": "^14.0.0",
"postcss": "^8.4.28",
"prettier": "^3.9.1",
"typescript": "^5.1.6"
},
"keywords": [
"stellar",
"blockchain",
"education",
"react",
"next.js",
"typescript",
"web3"
],
"author": "jobbykings",
"license": "MIT"
}