-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "airbnb-clone-next-js-graphql",
"private": false,
"description": "Airbnb clone with Next.js Apollo Graphql MongoDB ",
"keywords": [
"graphql,tools,schema,merge,combine,resolvers,fast,simple,starter,nextjs,typescript"
],
"author": "Salah Eddine Lalami",
"license": "MIT",
"scripts": {
"dev": "yarn generate && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "yarn schema && graphql-codegen --config codegen.yml",
"schema": "node ./scripts/generateSchema"
},
"dependencies": {
"@apollo/client": "^3.5.7",
"@graphql-codegen/cli": "^2.3.1",
"@graphql-codegen/typescript": "^2.4.2",
"apollo-server-micro": "^3.5.0",
"deepmerge": "^4.2.2",
"fast-graphql": "^2.0.2",
"graphql": "^16.2.0",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"mongoose": "^6.1.6",
"mongoose-autopopulate": "^0.16.0",
"next": "12.0.4",
"next-plugin-antd-less": "^1.8.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "16.11.7",
"@types/react": "17.0.35",
"babel-plugin-import": "^1.13.3",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"typescript": "4.5.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}