-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.25 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
{
"name": "uipalettes",
"description": "uipalettes is a Progressive Web App (PWA) that provides web developers access to a curated library of high-quality color palettes that fully comply with the Web Content Accessibility Guidelines (WCAG).",
"private": false,
"version": "1.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && sw-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "echo \"Error: tests are executed with npm run test:(e2e|integration|unit)\" && exit 1",
"test:e2e": "vitest run --config=vitest.test-e2e.config.ts",
"test:integration": "vitest run --config vitest.test-integration.config.ts",
"test:unit": "vitest run --config vitest.test-unit.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesusgraterol/uipalettes"
},
"keywords": [
"palette",
"utilities",
"accessibility",
"colors",
"wcag",
"palette-generation",
"palettes",
"utility-application",
"ui",
"ui-kit",
"ui-components",
"user-interface",
"design",
"design-system"
],
"author": "Jesus Graterol",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesusgraterol/uipalettes/issues"
},
"homepage": "https://github.com/jesusgraterol/uipalettes#readme",
"dependencies": {
"browser-style-normalizer": "^1.0.1",
"error-message-utils": "^1.1.0",
"lucide-react": "^0.379.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sw-service": "^1.0.0",
"wcag-contrast": "^3.0.0",
"webfont-montserrat": "^1.0.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/wcag-contrast": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.38",
"sw-builder": "^1.0.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0"
}
}