-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "crru-website",
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "NODE_ENV=development next dev",
"test": "npm run test:linting && npm run test:types && npm run test:jest",
"test:linting": "eslint . && prettier . --check && stylelint 'src/**/*.scss'",
"test:types": "tsc --noEmit",
"test:jest": "jest --coverage",
"test:jest:watch": "npm run test:jest -- --watchAll"
},
"dependencies": {
"@contentful/live-preview": "^4.6.8",
"@contentful/rich-text-plain-text-renderer": "^17.0.0",
"@contentful/rich-text-react-renderer": "^16.0.1",
"contentful": "^11.5.0",
"dayjs": "^1.11.13",
"joi": "^17.13.3",
"next": "^15.1.7",
"next-seo": "^6.6.0",
"nodemailer": "^6.10.0",
"react": "^19.0.0",
"react-markdown": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@next/eslint-plugin-next": "^15.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.13.5",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.0.10",
"babel-jest": "^29.7.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.16.2",
"prettier": "^3.5.2",
"sass": "^1.85.0",
"stylelint": "^16.14.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^6.11.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
}
}