-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "platzi-nextjs-plus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "yarn type-check && yarn lint",
"build:schema": "graphql-codegen --config codegen.yml"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"cookie": "^0.4.1",
"next": "11.1.1",
"next-auth": "^3.29.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.21.1"
},
"devDependencies": {
"@apollo/client": "^3.4.1",
"@contentful/rich-text-plain-text-renderer": "^15.1.0",
"@contentful/rich-text-react-renderer": "^15.2.0",
"@graphql-codegen/cli": "^2.16.2",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-graphql-request": "^3.2.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@next/bundle-analyzer": "^11.0.1",
"@types/cookie": "^0.4.0",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.11",
"@types/sanitize-html": "^2.3.2",
"autoprefixer": "^10.3.1",
"clsx": "^1.1.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"next-i18next": "^8.5.5",
"postcss": "^8.3.2",
"prettier": "^2.3.1",
"sanitize-html": "^2.4.0",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.2"
}
}