-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "mysaly",
"private": true,
"version": "0.0.0",
"description": "A comprehensive salary calculator application that helps users calculate net income, taxes, and other salary-related deductions with an intuitive interface.",
"homepage": "https://njirolu.github.io/mysaly",
"type": "module",
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint-and-format": "yarn lint:fix && yarn format",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"pages:build": "yarn build && gh-pages -d dist",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "https://github.com/njirolu/mysaly.git"
},
"bugs": {
"url": "https://github.com/njirolu/mysaly/issues"
},
"keywords": [
"salary",
"calculator",
"tax",
"income",
"finance",
"react",
"typescript",
"vite",
"tailwindcss"
],
"author": "njirolu",
"license": "MIT",
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.16",
"eslint": "^8.45.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"postcss": "^8.4.30",
"prettier": "^3.6.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}