-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "unitswitch",
"version": "0.2.0",
"private": true,
"author": [
"Jacob Benison <jacob.benison@gmail.com> (http://jacobbenison.com/)"
],
"description": "UnitSwitch is a single-page application that simplifies unit conversions for web designers and developers. Conveniently switch between various units of measurement, including pixels, ems, rems, and more, with an intuitive interface and keyboard shortcuts for efficient conversion.",
"license": "MIT License",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/node": "22.5.5",
"@types/react": "18.3.6",
"@types/react-dom": "18.3.0",
"@vercel/analytics": "^1.3.1",
"autoprefixer": "10.4.20",
"eslint": "9.10.0",
"eslint-config-next": "14.2.11",
"next": "14.2.11",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"serve": "^14.2.3",
"tailwindcss": "3.4.11",
"typescript": "5.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react-test-renderer": "^18.3.1"
}
}