-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "yusuf-portfolio",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"merge": "git fetch . dev:master && git push origin master:master",
"lint": "run-p -lsc lint:*",
"lint:eslint": "eslint src",
"lint:prettier": "prettier \"src/**/*.(ts|tsx|js|css|json)\" -c",
"lint:tsc": "tsc",
"codegen": "graphql-codegen --require dotenv/config --config codegen.yml",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write --ignore-unknown ."
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
],
"trailingComma": "all"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.16.5",
"@contentful/rich-text-types": "^16.2.0",
"@react-google-maps/api": "^2.18.1",
"@vercel/analytics": "^1.0.1",
"clsx": "^1.2.1",
"framer-motion": "^10.12.16",
"graphql": "^16.6.0",
"graphql-request": "^6.1.0",
"next": "^13.4.4",
"plaiceholder": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive-carousel": "^3.2.23",
"sass": "^1.62.1",
"sharp": "^0.32.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"contentful-cli": "^2.6.13",
"contentful-migration": "^4.12.9",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-canonical": "^4.2.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unicorn": "^47.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"typescript": "^5.0.4"
}
}