-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "running-calculator",
"version": "1.0.0",
"description": "React app for runners. Calculates time, distance, and pace",
"keywords": [],
"main": "src/index.ts",
"type": "module",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"formik": "^2.4.6",
"lucide-react": "^0.473.0",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ./src",
"prettier": "prettier --check ./src",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc -b --watch",
"checks": "pnpm run lint && pnpm run prettier && pnpm run typecheck"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.7",
"@types/react": "^18.0.2",
"@types/react-dom": "^18.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.9",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}