-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
108 lines (108 loc) · 3.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"engines": {
"node": "18.16.1"
},
"scripts": {
"dev": "run-s generate:pageindex dev:watch",
"dev:watch": "concurrently \"next dev\" \"yarn graphql:codegen:watch\"",
"build": "run-s generate:pageindex build:next",
"build:next": "next build",
"start": "next start",
"lint": "run-p lint:format lint:js lint:css",
"lint:format": "prettier --check --no-error-on-unmatched-pattern ./{src,pages}/**/*.{js,jsx,ts,tsx,graphql,md,mdpart}",
"lint:js": "eslint {src,pages} --ext ts,tsx,js,jsx",
"lint:css": "stylelint src/**/*.css",
"fix": "run-s fix:format fix:js fix:css",
"fix:format": "prettier --write --no-error-on-unmatched-pattern ./{src,pages}/**/*.{js,jsx,ts,tsx,graphql,md,mdpart}",
"fix:js": "eslint --fix {src,pages} --ext ts,tsx,js,jsx",
"fix:css": "stylelint src/**/*.css --fix",
"graphql:codegen": "graphql-codegen --config codegen.yml",
"graphql:codegen:watch": "graphql-codegen --watch --config codegen.yml",
"generate:pageindex": "node index-pages.mjs"
},
"dependencies": {
"@apollo/client": "3.7.15",
"@docsearch/react": "3.5.1",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-operations": "4.0.0",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@loomhq/loom-embed": "1.5.0",
"@markdoc/markdoc": "0.4.0",
"@markdoc/next.js": "0.2.2",
"@open-draft/until": "2.1.0",
"@pluralsh/design-system": "3.70.1",
"@react-aria/ssr": "3.6.0",
"@react-stately/list": "3.8.1",
"@react-stately/select": "3.5.1",
"algoliasearch": "4.17.2",
"chroma-js": "2.4.2",
"classnames": "2.3.2",
"deep-freeze": "0.0.1",
"fuse.js": "6.6.2",
"graphql": "16.6.0",
"honorable": "0.194.0",
"honorable-theme-default": "0.77.0",
"htmlparser2": "9.1.0",
"immer": "10.0.3",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"memoize-one": "6.0.0",
"next": "13.4.5",
"next-compose-plugins": "2.2.1",
"next-transpile-modules": "10.0.0",
"posthog-js": "1.68.1",
"raw-loader": "4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-embed": "3.7.0",
"react-github-btn": "1.4.0",
"react-is": "18.2.0",
"react-spring": "9.7.1",
"react-transition-group": "4.4.5",
"react-use-measure": "2.1.1",
"rooks": "7.14.1",
"styled-components": "5.3.11",
"swr": "2.1.5",
"tslib": "2.5.3",
"usehooks-ts": "2.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/client-preset": "4.0.0",
"@pluralsh/eslint-config-typescript": "2.5.41",
"@pluralsh/stylelint-config": "1.1.3",
"@types/node": "20.3.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.59.11",
"concurrently": "8.2.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import-newlines": "1.3.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"react-hooks": "1.0.1",
"stylelint": "15.7.0",
"stylelint-config-prettier": "9.0.5",
"typescript": "5.4.5"
},
"packageManager": "yarn@3.6.0",
"lint-staged": {
"./{src,pages}/**/*.{js,jsx,ts,tsx,graphql,md,mdpart}": "prettier --write"
}
}