-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 989 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 989 Bytes
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
{
"name": "colombia-tax-calculator",
"version": "1.2.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "tsx -r dotenv/config src/index.ts",
"build": "npm run clean && tsc",
"postbuild": "node scripts/fix-imports.js",
"clean": "rimraf dist"
},
"dependencies": {
"decimal.js": "10.4.3",
"dotenv": "16.4.7",
"pino": "10.0.0",
"pino-pretty": "10.3.1",
"prompt-sync": "4.2.0",
"tty-table": "4.2.3"
},
"devDependencies": {
"@types/node": "20.11.0",
"@types/prompt-sync": "4.2.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"prettier": "3.2.0",
"rimraf": "5.0.5",
"tsx": "4.20.6",
"typescript": "5.2.2"
},
"engines": {
"node": ">=20.0.0"
}
}