-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.97 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "InterviewsHelper",
"version": "1.0.0",
"description": "A bunch of utilities for automating the process of interviews as much as possible with minimal time resources.",
"main": "index.js",
"scripts": {
"compile": "tsc",
"lint": "eslint . --ext .ts,.js --fix && prettier -c '**/*.{ts,js,json,yml,md}' --write",
"verify": "yarn compile && yarn lint",
"validateDatabase": "ts-node index.ts --validateDatabase",
"generateQuestions": "ts-node index.ts --generateQuestions",
"generateInterviewPDF": "ts-node index.ts --generateInterviewPDF",
"generateResultPDF": "ts-node index.ts --generateResultPDF"
},
"keywords": [
"riseapps",
"interviews",
"react-native",
"react",
"node",
"angular"
],
"author": "Dmitry Usik",
"license": "ISC",
"dependencies": {
"axios": "~0.27.1",
"chart.js": "~3.7.1",
"dayjs": "~1.11.1",
"lodash.startcase": "~4.4.0",
"node-html-parser": "~5.3.3",
"pdfkit": "~0.13.0",
"prompts": "^2.4.2",
"quickchart-js": "~3.0.1"
},
"devDependencies": {
"@types/chart.js": "^2.9.37",
"@types/lodash.startcase": "^4.4.7",
"@types/node": "^17.0.27",
"@types/pdfkit": "^0.12.4",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}