-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "portfolio-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "yarn prettier --write .",
"test": "jest --watch",
"lint:eslint": "next lint",
"lint:types": "tsc --noEmit",
"lint:css": "stylelint \"**/*.(css)\"",
"schema:fetch": "node ./scripts/getSchemaFromIntrospectionQuery/index.js",
"schema:generate-types": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/client": "^3.8.0-alpha.15",
"@apollo/experimental-nextjs-app-support": "^0.1.0",
"@contentful/rich-text-react-renderer": "^15.16.5",
"@types/node": "20.2.5",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"graphql": "^16.6.0",
"next": "13.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.4"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.0",
"@graphql-codegen/client-preset": "4.0.0",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
"@graphql-codegen/typed-document-node": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0"
}
}