-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "kedro-website",
"private": true,
"scripts": {
"build": "node ./generateRobotsTxt.js && next build",
"dev": "next dev",
"format": "prettier --write .",
"lint": "next lint",
"setup": "node ./contentful/setup.js",
"sign-off": "make sign-off",
"start": "next start",
"test": "jest --watch",
"test:ci": "npm test -- --watchAll=false --maxWorkers=2"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.12.1",
"@netlify/edge-functions": "^2.11.0",
"classnames": "^2.3.2",
"framer-motion": "^6.2.7",
"next": "^14.2.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.49.7",
"sharp": "^0.33.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.38",
"@types/react-syntax-highlighter": "^15.5.6",
"asciinema-player": "^3.6.3",
"contentful-import": "^8.5.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"feed": "^4.2.2",
"husky": "^8.0.3",
"jest": "^27.4.7",
"lint-staged": "^13.2.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"lint-staged": {
"*/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write"
],
"*/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}