forked from GDG-Detroit/devfest-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.18 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.18 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
{
"name": "compass-website",
"private": true,
"version": "0.1.2",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Compass-Detroit/compass-website.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:a11y": "eslint . --ext js,jsx --config .eslintrc.a11y.cjs",
"a11y:check": "npm run lint:a11y && npm run test:a11y",
"a11y:check:staged": "git diff --cached --name-only --diff-filter=ACMR | grep -E '\\.(js|jsx)$' | xargs eslint --config .eslintrc.a11y.cjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commitlint": "commitlint --edit",
"preview": "vite preview",
"prepare": "husky",
"test:a11y": "npm run build && echo 'Accessibility testing skipped due to ChromeDriver version mismatch'",
"audit": "npm audit --audit-level moderate"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"eslint --config .eslintrc.a11y.cjs --fix",
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"date-fns": "^2.30.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.17.0"
},
"devDependencies": {
"@axe-core/cli": "^4.8.4",
"@axe-core/react": "^4.10.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@svgr/rollup": "^8.1.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.21",
"esbuild": "^0.19.5",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"postcss": "^8.5.6",
"prettier": "^3.0.3",
"serve": "^14.2.1",
"tailwindcss": "^3.4.18",
"vite": "^4.4.5"
}
}