forked from alura/techguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.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
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
77
{
"name": "tshapeddev",
"version": "0.7.0",
"main": "index.js",
"repository": "git@github.com:alura/tshapeddev.git",
"author": "Mario Souto <13791385+omariosouto@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"build:static": "next build && next export",
"lint": "eslint './src/**/*.{ts,tsx}' './_api/**/*.{ts,tsx}' && yamllint ./_data/**/*.yaml",
"test": "jest",
"generate:types": "yarn generate:types:back && yarn generate:types:front",
"generate:types:back": "graphql-codegen --config codegen.yml",
"generate:types:front": "graphql-codegen --config codegen-front.yml"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@graphql-codegen/typed-document-node": "^2.3.2",
"@skynexui/responsive_stylesheet": "^1.10.3",
"@testing-library/react": "^13.3.0",
"@types/styled-components": "^5.1.25",
"@urql/core": "^2.6.1",
"apollo": "^2.34.0",
"apollo-server-core": "^3.10.0",
"apollo-server-micro": "^3.10.0",
"d3": "^7.6.1",
"deepmerge": "^4.2.2",
"graphql": "^16.5.0",
"graphql-scalars": "^1.17.0",
"graphql-tag": "2.12.6",
"html-react-parser": "^3.0.1",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"next": "^12.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "18.2.0",
"read-yaml-file": "^2.1.0",
"sift": "^16.0.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2",
"yaml-lint": "^1.7.0"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.182",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@graphql-codegen/typescript-react-apollo": "3.2.11",
"@graphql-codegen/typescript-resolvers": "2.6.1",
"@next/eslint-plugin-next": "^12.2.3",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-styled-components": "^7.0.8",
"prettier": "2.6.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}