-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "@fazenda-tech/brafis",
"version": "1.0.2",
"main": "build/index.js",
"author": "gabrieljablonski <contact@gabrieljablonski.com>",
"license": "MIT",
"scripts": {
"start": "tsx watch ./src/index.ts",
"prebuild": "eslint 'src/**/*.ts'",
"build": "tsc && tsc-alias"
},
"files": [
"build",
"README.md"
],
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.58.0",
"csv-parser": "^3.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"node-xlsx": "^0.21.0",
"patch-package": "^6.5.1",
"prettier": "^2.8.7",
"tsc-alias": "^1.8.5",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"dependencies": {
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"decimal.js": "^10.4.3",
"fast-xml-parser": "^4.2.0",
"xmldsigjs": "^2.5.1",
"yup": "^1.1.1"
}
}