-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
31 lines (31 loc) · 1.46 KB
/
package.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
{
"name": "web_development_assets",
"version": "0.1.0",
"description": "In this course, students will learn how to develop web applications on the IC and ultimately implement an open auction platform similar to eBay. Module 1 serves as an intro to this unit, providing a primer for web development by reviewing canister messaging, HTTP requests, cycles, and autonomous canisters. Module 2 introduces students to the idea of an open auction platform and completes the majority of the backend required for such a project. In Module 3, students connect their backend code with a frontend accessible via browser. Finally, Module 4 has students implement an autonomous governance canister, that acts as the decentralized arbiter of our auction platform's feature upgrades.",
"keywords": [],
"repository": "https://github.com/DFINITY-Education/web-development",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "webpack"
},
"devDependencies": {
"@dfinity/agent": "0.9.2",
"css-loader": "5.0.1",
"eslint": "7.30.0",
"style-loader": "3.1.0",
"eslint-plugin-react": "7.24.0",
"terser-webpack-plugin": "4.1.0",
"ts-loader": "9.2.3",
"typescript": "4.4.0-dev.20210715",
"url-loader": "4.1.1",
"webpack": "5.24.4",
"webpack-cli": "4.5.0"
},
"dependencies": {
"@egjs/react-infinitegrid": "3.2.5",
"bootstrap": "4.5.3",
"react": "17.0.1",
"react-bootstrap": "2.0.0-beta.3",
"react-dom": "17.0.1"
}
}