-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.6 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "synapse",
"version": "0.0.1",
"description": "Synapse is a tool that generates interactive graphs of course prerequisites and corequisites using data extracted from the UAlberta course catalogue.",
"private": true,
"dependencies": {
"@material/button": "^11.0.0",
"@material/card": "^11.0.0",
"@material/dialog": "^11.0.0",
"@material/elevation": "^11.0.0",
"@material/fab": "^11.0.0",
"@material/icon-button": "^11.0.0",
"@material/snackbar": "^11.0.0",
"@material/textfield": "^11.0.0",
"@material/typography": "^11.0.0",
"json-diff": "^1.0.6"
},
"devDependencies": {
"@types/puppeteer": "^5.4.3",
"css-loader": "^5.2.4",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"puppeteer": "^9.1.1",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"ts-loader": "^9.2.1",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider && webpack",
"scrape": "tsc scraper/pool.ts scraper/scraper.ts && node scraper/scraper.js",
"start": "export NODE_OPTIONS=--openssl-legacy-provider && webpack serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steventango/synapse.git"
},
"author": "Steven Tang and OSC",
"license": "MIT",
"bugs": {
"url": "https://github.com/steventango/synapse/issues"
},
"homepage": "https://github.com/steventango/synapse#readme"
}