-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jku-room-search",
"version": "0.1.0",
"description": "Search for free rooms on the campus of the Johannes Kepler University Linz",
"scripts": {
"build": "webpack --mode=production",
"gate": "eslint . --ext .js,.jsx,.ts,.tsx && prettier --check .",
"fix": "yarn format && yarn lint",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"watch": "webpack --mode=development --watch",
"serve": "webpack serve --mode=development --port 8080 --open",
"scrape": "yarn build && node ./dist/js/scraper.js",
"scrape-quick": "yarn build && node ./dist/js/scraper.js --quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blu3r4y/jku-room-search.git"
},
"author": "Mario Kahlhofer",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/blu3r4y/jku-room-search/issues"
},
"homepage": "https://github.com/blu3r4y/jku-room-search#readme",
"devDependencies": {
"@dynatrace/dtrum-api-types": "^1.291.1",
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.4.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"node-fetch": "^2.7.0",
"prettier": "^3.2.5",
"purgecss-webpack-plugin": "^6.0.0",
"source-map-loader": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"air-datepicker": "^3.5.3",
"bootstrap": "^5.3.3",
"bottleneck": "^2.19.5",
"cash-dom": "^8.1.5",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.11",
"got": "^12.6.1",
"scroll-into-view-if-needed": "^3.1.0",
"typescript-collections": "^1.3.3"
},
"peerDependencies": {
"@popperjs/core": "^2.11.5"
},
"packageManager": "yarn@4.2.2"
}