-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) Β· 3.03 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) Β· 3.03 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
{
"name": "ts-boilerplate",
"version": "1.0.0",
"description": "Pre-configured repo for Frontend development with my favorite tooling",
"author": {
"name": "Alberto Blazquez",
"url": "https://github.com/albertoblaz"
},
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"browserslist:lint": "npx browserslist lint",
"browserslist:refresh": "npx update-browserslist-db@latest",
"build": "yarn build:icon-types && yarn build:css && tsc -b && vite build",
"build:css": "tailwindcss -i app/styles/tailwind/tailwind.css -o app/styles/tailwind/index.css",
"build:icon-types": "node scripts/gen-icon-types.js",
"build:preview": "vite preview --port 8080",
"deps": "npm-check-updates",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier:check": "prettier --check '**/*.{ts,tsx,js,jsx}' --no-error-on-unmatched-pattern",
"prettier:write": "prettier --write '**/*.{ts,tsx,js,jsx}' --no-error-on-unmatched-pattern",
"start": "yarn build:icon-types && concurrently \"yarn start:css\" \"yarn start:dev\"",
"start:dev": "vite",
"start:css": "tailwindcss -i app/styles/tailwind/tailwind.css -o app/styles/tailwind/index.css --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:ui:coverage": "vitest --ui --coverage.enabled",
"tsc": "tsc --watch"
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"browserslist-to-esbuild": "^2.1.1",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"npm-check-updates": "^17.1.0",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.0.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.6.2",
"typescript-eslint": "^8.12.1",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"engines": {
"node": "20.16.0"
}
}