-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tax-comparison-tool",
"version": "1.0.0",
"description": "Multi-country tax comparison tool",
"main": "js/app.js",
"type": "module",
"bin": {
"tax-cli": "./src/cli/tax-cli.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest -c jest-esm-fix.config.mjs",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch -c jest-esm-fix.config.mjs",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage -c jest-esm-fix.config.mjs",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=__tests__/unit -c jest-esm-fix.config.mjs",
"test:api": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=__tests__/api -c jest-esm-fix.config.mjs",
"test:cli": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=__tests__/cli -c jest-esm-fix.config.mjs",
"test:node": "NODE_OPTIONS=--experimental-vm-modules jest --env=node -c jest-esm-fix.config.mjs",
"start:api": "node src/api/server.js",
"start:dev": "nodemon src/api/server.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"cli": "node src/cli/tax-cli.js",
"dev:full": "concurrently \"npm run dev\" \"npm run start:api\""
},
"dependencies": {
"@babel/preset-react": "^7.27.1",
"@babel/runtime": "^7.27.6",
"body-parser": "^2.2.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^14.0.0",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"figlet": "^1.5.2",
"react": "^18.2.0",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"recharts": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.22.5",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^30.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"babel-jest": "^29.5.0",
"core-js": "^3.32.0",
"domexception": "^4.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.7.0",
"jsdom": "^22.1.0",
"node-fetch": "^3.3.1",
"nodemon": "^3.0.1",
"regenerator-runtime": "^0.14.0",
"text-encoding": "^0.7.0",
"ts-jest": "^29.4.0",
"vite": "^4.4.5",
"whatwg-fetch": "^3.6.2",
"whatwg-url": "^12.0.0",
"xmlhttprequest": "^1.8.0"
}
}