-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@tucmc/hazel",
"version": "0.0.9",
"engines": {
"node": ">=13.0.0"
},
"description": "Clubs Data Processing Framework",
"main": "dist/lib/index",
"bin": {
"hazel": "dist/cmd/index.js"
},
"scripts": {
"exec": "ts-node ./src/runtime.ts",
"doc": "typedoc",
"build": "tsc --declaration",
"check-types": "tsc --noEmit --pretty && tsc --project cypress --noEmit --pretty"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@commitlint/cz-commitlint": "^17.2.0",
"@jest/globals": "^29.7.0",
"@mxssfd/typedoc-theme": "^1.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"babar": "^0.2.3",
"better-docs": "^2.7.2",
"cli-progress": "^3.11.2",
"dts-gen": "^0.6.1",
"ervy": "^1.0.7",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.7.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^2.0.0",
"gts": "^4.0.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"jsdoc": "^3.6.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"taffydb": "^2.7.3",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"tsdoc": "^0.0.4",
"typedoc": "^0.23.26",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/readline-sync": "^1.4.4",
"cli-spinner": "^0.2.10",
"commander": "^12.0.0",
"dotenv": "^16.0.3",
"exceljs": "^4.3.0",
"firebase-admin": "^11.5.0",
"node-object-hash": "^3.0.0",
"node-options": "^0.0.7",
"ora": "5.4.1",
"parse-options": "^1.0.6",
"pdf-node": "^1.0.1",
"readline-sync": "^1.4.10",
"ts-transformer-keys": "^0.4.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/triamudomcmc/hazel.git"
},
"author": "",
"bugs": {
"url": "https://github.com/triamudomcmc/hazel/issues"
},
"homepage": "https://github.com/triamudomcmc/hazel#readme",
"types": "./dist/lib/index.d.ts",
"keywords": [
"hazel"
]
}