-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "website-next",
"private": true,
"scripts": {
"dev": "npm run codegen && next dev",
"build": "npm run codegen && next build && next export",
"start": "npm run dev",
"lint": "next lint --fix",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,graphql,css}\"",
"codegen": "graphql-let --require dotenv/config"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@contentful/rich-text-react-renderer": "^15.11.1",
"@googleapis/drive": "^4.0.1",
"@googleapis/sheets": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"date-fns": "^2.28.0",
"google-auth-library": "^8.7.0",
"graphql": "^16.3.0",
"hls.js": "^1.5.8",
"next": "^12.0.10",
"ramda": "^0.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"sharp": "^0.32.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.1",
"@graphql-codegen/import-types-preset": "^2.1.10",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-operations": "^2.3.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.6",
"@graphql-codegen/typescript-resolvers": "^2.7.6",
"@types/ramda": "^0.28.7",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"graphql-let": "^0.18.4",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1",
"typescript": "^5.4.5"
}
}