-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "crru-website",
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "NODE_ENV=development next dev",
"test": "npm run test:eslint && npm run test:stylelint && npm run test:typescript && npm run test:unit",
"test:eslint": "eslint .",
"test:stylelint": "stylelint 'src/**/*.scss'",
"test:typescript": "tsc --noEmit",
"test:unit": "jest --coverage",
"test:unit:watch": "npm run test:unit -- --watchAll"
},
"dependencies": {
"@contentful/live-preview": "^4.5.14",
"@contentful/rich-text-plain-text-renderer": "^17.0.0",
"@contentful/rich-text-react-renderer": "^16.0.0",
"contentful": "^11.2.1",
"dayjs": "^1.11.13",
"joi": "^17.13.3",
"next": "^15.0.3",
"next-seo": "^6.6.0",
"nodemailer": "^6.9.16",
"react": "^18.3.1",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@next/eslint-plugin-next": "^15.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.9.0",
"@types/nodemailer": "^6.4.16",
"@types/react": "^18.3.12",
"babel-jest": "^29.7.0",
"eslint": "^9.14.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.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.1",
"sass": "^1.80.6",
"stylelint": "^16.10.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"max-nesting-depth": 2,
"selector-max-compound-selectors": null,
"selector-no-qualifying-type": null
}
}
}