-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.72 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
75
76
77
78
79
80
81
82
83
84
{
"name": "geops-website",
"license": "UNLICENSED",
"version": "1.0.0",
"dependencies": {
"@formatjs/intl-localematcher": "0.5.4",
"@sentry/nextjs": "7.109.0",
"feed": "4.2.2",
"gray-matter": "4.0.3",
"highlight.js": "11.9.0",
"image-size": "1.1.1",
"markdown-to-jsx": "7.4.5",
"negotiator": "0.6.3",
"netlify-cms-app": "2.15.72",
"netlify-cms-oauth-provider-node": "2.0.0",
"next": "14.1.4",
"pure-react-carousel": "1.30.1",
"react": "18.3.1",
"react-dom": "18.2.0",
"react-syntax-highlighter": "15.5.0",
"reading-time": "1.5.0",
"rosetta": "1.1.0",
"sharp": "0.33.3"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.13",
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "16.0.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"autoprefixer": "10.4.19",
"cypress": "13.10.0",
"eslint": "8.57.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "3.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"fixpack": "4.0.0",
"husky": "9.0.11",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.5",
"next-sitemap": "4.2.3",
"postcss": "8.4.38",
"prettier": "3.3.0",
"prettier-plugin-tailwindcss": "0.6.1",
"react-test-renderer": "18.3.1",
"start-server-and-test": "2.0.3",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"scripts": {
"build": "next build && next-sitemap",
"cy:open": "cypress open",
"cy:test": "start-server-and-test start http://localhost:3000 'cypress run --browser chrome --headless'",
"cy:test:chrome": "start-server-and-test start http://localhost:3000 'cypress run --browser chrome --headless'",
"cy:test:edge": "start-server-and-test start http://localhost:3000 'cypress run --browser edge --headless'",
"cy:test:firefox": "start-server-and-test start http://localhost:3000 'cypress run --browser firefox --headless'",
"dev": "next",
"format": "eslint --cache --fix && prettier --write .",
"lint": "next lint",
"prepare": "husky",
"start": "yarn dev",
"test": "jest --passWithNoTests",
"up": "yarn upgrade-interactive --latest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"yarn test --bail --passWithNoTests --findRelatedTests"
],
"*.{css,md}": "prettier --write",
"package.json": [
"fixpack"
]
}
}