-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.11 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": "climate-triage",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"serve": "npx serve@latest out",
"lint": "next lint",
"prepare": "husky install",
"prebuild": "tsx data/index.ts",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/bundle-analyzer": "^14.2.4",
"@next/mdx": "^14.2.5",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"dayjs": "^1.11.12",
"millify": "^6.1.0",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-infinite-scroll-component": "^6.1.0",
"schema-dts": "^1.1.2",
"sharp": "^0.33.4",
"slugify": "^1.6.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.1",
"@types/jest": "^29.5.12",
"@types/mdx": "^2.0.13",
"@types/node": "20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-infinite-scroller": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.14.3",
"husky": "^9.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.5",
"sass": "^1.77.8",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"eslint --fix"
]
}
}