-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
{
"name": "hk-study-group-organizer",
"version": "1.0.0",
"description": "An algorithm to sort new students to study groups",
"main": "src/index.ts",
"repository": "https://github.com/KostyalBalint/hk-study-group-organizer.git",
"author": "Kostyal Balint <kostyal.balintnak@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"inspect": "tsc && node --inspect ./dist/index.js",
"dev": "nodemon",
"web": "webpack --watch"
},
"dependencies": {
"@types/cli-progress": "^3.9.2",
"@types/convert-excel-to-json": "^1.7.1",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.171",
"chalk": "^4.1.1",
"chart.js": "^3.5.0",
"cli-progress": "^3.9.0",
"convert-excel-to-json": "^1.7.0",
"ejs": "^3.1.6",
"exceljs": "^4.2.1",
"express": "^4.17.1",
"lodash": "^4.17.21",
"xlsx": "^0.17.0"
},
"devDependencies": {
"loader-utils": "^2.0.0",
"prettier": "2.3.2",
"ts-loader": "^9.2.5",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4
}
}