-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "calculators",
"version": "1.5.3",
"license": "MIT",
"type": "module",
"description": "Handy calculator tools in an easily-accessible web page",
"homepage": "https://laskurit.pomeranssi.fi",
"packageManager": "yarn@4.14.1",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest run",
"deploy": "sh script/deploy.sh",
"clean": "rm -rf dist/",
"eject": "react-scripts eject",
"lint": "yarn lint-eslint && yarn lint-tsc",
"lint-eslint": "eslint src",
"lint-tsc": "tsc --noEmit",
"fix": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "https://github.com/thaapasa/calculators"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "10.1.0",
"crypto-browserify": "^3.12.1",
"fast-xml-parser": "^5.7.2",
"intl": "1.2.5",
"intl-locales-supported": "1.8.12",
"lucide-react": "^1.14.0",
"luhn-js": "1.1.2",
"md5": "^2.3.0",
"moment": "2.30.1",
"ramda": "0.32.0",
"react": "19.2.5",
"react-autosuggest": "10.1.0",
"react-dom": "19.2.5",
"react-router": "7.14.2",
"react-router-dom": "7.14.2",
"react-sizeme": "3.0.2",
"tailwind-merge": "^3.5.0",
"uuid": "14.0.0",
"vitest": "^4.1.5",
"xml-js": "1.6.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/eslint": "^9.6.1",
"@types/jest": "30.0.0",
"@types/jsdom": "^28",
"@types/md5": "^2.3.6",
"@types/node": "25.6.0",
"@types/ramda": "0.31.1",
"@types/react": "19.2.14",
"@types/react-autosuggest": "10.1.11",
"@types/react-dom": "19.2.3",
"@types/uuid": "11.0.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^29.1.1",
"prettier": "3.8.3",
"tailwindcss": "^4.2.4",
"tslib": "2.8.1",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}