-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 905 Bytes
/
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
{
"name": "gymial",
"version": "1.0.0",
"engines": {
"node": ">=17.8.0"
},
"description": "An open-source KZO timetable",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build": "webpack --mode production",
"build-dev": "webpack --mode development"
},
"author": "Liam Braun",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.2",
"hyphenopoly": "^5.1.0",
"iconv-lite": "^0.6.3",
"jsdom": "^22.1.0",
"node-fetch": "^3.2.0",
"pg": "^8.7.3",
"rate-limiter-flexible": "^2.3.6",
"redis": "^4.1.0",
"webpack": "^5.72.0"
},
"devDependencies": {
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"webpack-cli": "^4.10.0"
}
}