-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.45 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
{
"name": "gvns.ca",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn compile && yarn next build",
"clean": "rm -rf build-tsc .next",
"compile": "yarn run -T tsc --build --verbose",
"dev": "yarn compile && yarn next dev",
"lint": "yarn run -T prettier --write './src/**/*.{js,jsx,json,ts,tsx}' && eslint './src/**/*.{js,jsx,ts,tsx}' --fix --max-warnings=0",
"start": "yarn next start",
"sitemap": "yarn next-sitemap",
"shred": "rm -rf build-tsc .next && yarn && yarn compile && yarn next dev",
"test": "jest --watch"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@testing-library/dom": "^10.0.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"classnames": "^2.5.1",
"glob": "^11.0.0",
"next": "^15.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"ts-pattern": "^5.5.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/config-array": "^0.19.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@eslint/object-schema": "^2.1.4",
"@next/eslint-plugin-next": "^15.0.3",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.10.1",
"@types/react": "^19.0.2",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "10.4.20",
"cssnano": "^7.0.6",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-memo": "^0.0.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"sass": "^1.81.0",
"sort-package-json": "^2.12.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}