-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.52 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": "paletta",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && echo '🎉\\x1b[32mLinting passed successfully!\\x1b[0m 🎉'",
"preview": "vite preview",
"format": "prettier --write ./src",
"purgecss": "purgecss --config purgecss.config.cjs --output ./purgecss.scss",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky",
"lhci:mobile": "lhci autorun",
"lhci:desktop": "lhci autorun --collect.settings.preset=desktop",
"lhci:a11y": "rn lhci autorun --collect.settings.preset=desktop --collect.staticDistDir=./dist --only-categories=accessibility",
"axe:a11y": "axe http://localhost:8000 --browser=firefox --disable=nested-interactive",
"css-compile": "postcss src/styles/main.scss -o dist/styles/main.css"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/react": "^14.2.1",
"autoprefixer": "^10.4.20",
"highsoft-design-tokens": "^2.0.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-scss": "^4.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"sass": "^1.77.7",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@axe-core/cli": "^4.9.0",
"@lhci/cli": "^0.13.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"babel-jest": "^29.7.0",
"depcheck": "^1.4.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"purgecss": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.0.0"
}
}