-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "portugal-taxes",
"description": "Portugal taxes calculator",
"scripts": {
"dev": "webpack serve --config config/development.config.mjs",
"build": "webpack build --config config/production.config.mjs",
"serve": "npx serve dist",
"lint:js": "eslint src",
"test": "find ./src -name '*.test.ts' -exec node --loader @swc-node/register/esm --test {} \\;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalinichenko88/taxes.git"
},
"author": "Ivan Kalinichenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalinichenko88/taxes/issues"
},
"homepage": "https://github.com/kalinichenko88/taxes#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc-node/register": "^1.10.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-load-config": "^6.0.1",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}