-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
67 lines (67 loc) · 1.83 KB
/
manifest.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
{
"type": "unit",
"id": "main_intro",
"name": "Introduction to Computer Science",
"upload": [
"sections/00_intro_to_cratecode",
"sections/10_intro_to_cs",
"sections/20_intro_to_p5",
"sections/30_continuing_p5",
"sections/30_console_applications",
"sections/40_making_websites",
"sections/50_backend_websites",
"sections/50_using_react",
"sections/60_continuing_cs",
"sections/60_typescript",
"sections/70_next_js"
],
"templates": "templates",
"images": "images",
"lessons": {
"intro_to_cratecode": {
"next": ["intro_to_cs"]
},
"intro_to_cs": {
"next": ["intro_to_p5"]
},
"intro_to_p5": {
"next": ["continuing_p5", "console_applications"]
},
"continuing_p5": {
"next": ["making_websites"]
},
"console_applications": {
"next": ["making_websites"]
},
"making_websites": {
"next": ["backend_websites", "using_react"]
},
"backend_websites": {
"next": ["continuing_cs", "typescript"],
"previous": ["making_websites", "console_applications"],
"requireAll": true
},
"using_react": {
"next": ["continuing_cs", "typescript", "next_js"]
},
"continuing_cs": {
"next": []
},
"typescript": {
"next": ["next_js"]
},
"next_js": {
"next": [],
"previous": ["using_react", "typescript"],
"requireAll": true
}
},
"configTemplate": {
"commands": {
"0": {
"cmd": "pnpm --dir ~/project --prefer-offline install",
"mode": "once"
}
}
}
}