forked from triamudomcmc/hazel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.7 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
{
"name": "hazel",
"version": "0.1.2",
"engines": {
"node": ">=13.0.0"
},
"description": "Data Processing Framework",
"main": "src/lib/index.ts",
"scripts": {
"run": "ts-node ./src/runtime.ts",
"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",
"@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",
"jsdoc": "^3.6.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"taffydb": "^2.7.3",
"ts-node": "^10.9.2",
"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",
"dotenv": "^16.0.3",
"exceljs": "^4.3.0",
"firebase-admin": "^11.5.0",
"html-pdf": "^3.0.1",
"node-object-hash": "^3.0.0",
"ora": "5.4.1",
"pdf-node": "^1.0.1",
"readline-sync": "^1.4.10",
"ts-transformer-keys": "^0.4.4",
"xlsx": "^0.18.5"
},
"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"
]
}
}