-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 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
{
"name": "hello-next",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"check-format": "npm run pretty -- --list-different",
"commit": "npx git-cz",
"coverage": "jest --config jest.config.js",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run",
"dev": "npx browserslist@latest --update-db && next dev",
"e2e:open": "start-server-and-test dev http://localhost:3000 cy:open",
"e2e:test": "npx browserslist@latest --update-db && start-server-and-test dev http://localhost:3000 cy:run",
"format": "npm run pretty -- --write",
"lint": "eslint --ignore-path .gitignore --ext .ts --ext .tsx .",
"pretty": "prettier --ignore-path .gitignore \"**/*.+(ts|tsx|js|json|md)\"",
"start": "next start",
"test": "jest",
"tsc": "npx tsc --noEmit --pretty",
"validate": "npm-run-all --parallel check-format lint",
"prepare": "husky install"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.22.11",
"@vercel/speed-insights": "^1.0.12",
"contentful": "^10.6.21",
"next": "^14.2.13",
"next-images": "^1.8.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/eslint-plugin-next": "^14.2.14",
"@svgr/webpack": "^8.1.0",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "18.3.11",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"core-js": "^3.38.1",
"cypress": "^13.15.0",
"cypress-axe": "^1.5.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^2.0.3",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar": "^0.2.16",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"regenerator-runtime": "^0.14.1",
"start-server-and-test": "^2.0.8",
"tsc-files": "^1.1.4",
"typescript": "^5.6.2"
}
}