-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 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
80
{
"name": "fm-website-nextjs",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"styles": "npx tailwindcss -i ./styles/app.css -o ./public/app.css --watch",
"generate-types": "cf-content-types-generator -s $FM_CONTENTFUL_SPACE_ID -t $FM_CONTENTFUL_PERSONAL_ACCESS_TOKEN -o lib/types",
"prettier-types": "prettier --single-quote --tab-width 4 --print-width 120 --write 'lib/types/*.ts'",
"generate-types-pretty": "npm run generate-types && npm run prettier-types"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.11.1",
"@contentful/rich-text-types": "^15.11.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.1",
"cf-content-types-generator": "^2.0.1",
"classnames": "^2.3.1",
"contentful": "^9.1.5",
"fast-safe-stringify": "^2.1.1",
"formik": "^2.2.9",
"framer-motion": "^6.2.8",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.noop": "^3.0.1",
"next": "12.1.0",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.2",
"react": "17.0.2",
"react-cool-dimensions": "^2.0.7",
"react-cool-inview": "^2.0.9",
"react-dom": "17.0.2",
"react-dropzone": "^12.0.4",
"react-markdown": "^8.0.0",
"react-player": "^2.9.0",
"react-responsive-carousel": "^3.2.23",
"styled-components": "^5.3.3",
"swr": "^1.2.1",
"tailwindcss": "^3.0.11",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-react": "^7.16.7",
"@types/dropzone": "^5.7.4",
"@types/lodash.get": "^4.4.6",
"@types/lodash.has": "^4.5.6",
"@types/lodash.noop": "^3.0.6",
"@types/node": "^16.11.19",
"@types/react": "17.0.38",
"@types/react-dropzone": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"contentful-management": "^7.48.0",
"contentful-typescript-codegen": "^3.2.3",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-config-wesbos": "^3.0.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}