-
Notifications
You must be signed in to change notification settings - Fork 59
/
dfx.json
50 lines (50 loc) · 1.16 KB
/
dfx.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
{
"canisters": {
"counter": {
"main": "chapters/qualification/demo/main.mo",
"type": "motoko"
},
"motivation_letter" : {
"main": "chapters/qualification/challenge/main.mo",
"type": "motoko"
},
"chapter_1": {
"main": "chapters/chapter_1/challenge/main.mo",
"type": "motoko"
},
"chapter_2": {
"main": "chapters/chapter_2/challenge/main.mo",
"type": "motoko"
},
"chapter_3": {
"main": "chapters/chapter_3/challenge/main.mo",
"type": "motoko"
},
"chapter_4": {
"main": "chapters/chapter_4/challenge/main.mo",
"type": "motoko"
},
"chapter_5": {
"main": "chapters/chapter_5/challenge/main.mo",
"type": "motoko"
},
"graduation_dao" : {
"main": "chapters/graduation/dao/main.mo",
"type": "motoko"
},
"graduation_token": {
"main": "chapters/graduation/token/main.mo",
"type": "motoko"
},
"graduation_webpage": {
"main": "chapters/graduation/webpage/main.mo",
"type": "motoko"
}
},
"defaults": {
"build": {
"args": "--hide-warnings",
"packtool": "mops sources"
}
}
}