forked from developmentseed/eoviz-esip2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint": "next lint",
"lint:fix": "eslint . --fix",
"ts-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"check": "yarn run format:check && yarn run lint",
"fix": "yarn run format && yarn run lint:fix"
},
"resolutions": {
"@types/react": "18.2.8"
},
"dependencies": {
"@devseed-ui/theme-provider": "^4.1.0",
"@teamimpact/veda-ui": "6.10.1",
"@uswds/uswds": "^3.10.0",
"geist": "1.2.2",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"next": "14.2.3",
"next-mdx-remote": "^4.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.83.0",
"styled-components": "^5.3.3",
"sugar-high": "^0.6.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.10",
"@types/react": "18.2.8",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^26.0.0",
"postcss": "^8.4.35",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"typescript": "5.3.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
}
}