This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "cms-contentful",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext '.ts,.tsx,.js,.jsx'",
"prettier": "prettier --write 'src/**/*.{jsx,js,ts,tsx}'",
"prettier:check": "prettier --check 'src/**/*.{jsx,js,ts,tsx}'",
"tsc": "tsc",
"generate-types": "cf-content-types-generator -s $CF_SPACE_ID -t $CF_CMA_TOKEN -o src/lib/generated-types",
"ts": "node -r esm -r ts-node/register/transpile-only ",
"prepare": "husky install"
},
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^15.12.0",
"@contentful/rich-text-react-renderer": "^15.12.0",
"@contentful/rich-text-types": "^15.12.0",
"@tailwindcss/typography": "^0.5.2",
"classnames": "^2.2.6",
"contentful": "^9.1.18",
"date-fns": "^2.28.0",
"fast-safe-stringify": "^2.1.1",
"lodash": "^4.17.21",
"next": "^12.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-player": "^2.10.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cf-content-types-generator": "^2.0.1",
"dotenv": "16.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"esm": "^3.2.25",
"husky": "^7.0.0",
"lint-staged": "^12.3.7",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.md": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}