-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "@freecodecamp/freecodecamp-os",
"author": "freeCodeCamp",
"version": "4.1.0",
"description": "Open Source platform for creating and maintaining interactive coding curricula",
"bin": {
"freecodecamp-server": "bin/freecodecamp-server"
},
"files": [
"bin/",
"scripts/postinstall.js"
],
"scripts": {
"dev:client": "vite",
"build:client": "vite build",
"build:rust": "cargo build --release",
"build": "bun install && bun run build:client && bun run build:rust",
"dev": "bun run dev:client & cargo run --bin server",
"postinstall": "node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/freeCodeCampOS"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@tanstack/react-query": "^5.90.21",
"marked": "^17.0.3",
"marked-highlight": "^2.2.3",
"prismjs": "^1.30.0",
"vite-plugin-prismjs": "0.0.11"
},
"devDependencies": {
"@types/bun": "1.3.7",
"@types/prismjs": "1.26.5",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@7.3.1"
}
}