-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.61 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
109
110
111
112
113
114
{
"name": "fossilfuelregistry.org",
"version": "2.0.0",
"main": "index.js",
"author": "CarbonTracker UK",
"license": "MIT",
"private": true,
"engines": {
"node": "16.x",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:clean": "rm -rf node_modules/.cache/storybook",
"gql:codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@chakra-ui/icons": "^2.0.6",
"@chakra-ui/react": "^2.2.4",
"@chakra-ui/styled-system": "^2.2.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/roboto": "^4.5.7",
"@graphql-codegen/typed-document-node": "^2.3.5",
"@sentry/nextjs": "^7.7.0",
"@tanstack/react-table": "^8.5.13",
"@turf/bbox": "^6.5.0",
"@visx/axis": "^2.12.2",
"@visx/curve": "^2.1.0",
"@visx/grid": "^2.12.2",
"@visx/group": "^2.10.0",
"@visx/mock-data": "^2.1.2",
"@visx/responsive": "^2.10.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.12.2",
"@visx/tooltip": "^2.10.0",
"@visx/visx": "^2.12.2",
"chakra-react-select": "^4.1.4",
"cookies-next": "^2.1.1",
"d3-array": "^3.2.0",
"deepmerge": "^4.2.2",
"fp-ts": "^2.12.2",
"framer-motion": "^6",
"graph-data-structure": "^2.0.0",
"graphql": "^16.6.0",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"maplibre-gl": "^2.1.9",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"next": "12.2.3",
"node-cache": "^5.1.2",
"react": "18.2.0",
"react-csv-downloader": "^2.8.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@chakra-ui/storybook-addon": "^4.0.4",
"@graphql-codegen/cli": "2.13.7",
"@graphql-codegen/client-preset": "^1.1.0",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "^2.7.5",
"@graphql-codegen/typescript-operations": "^2.5.5",
"@graphql-codegen/typescript-react-apollo": "^3.3.5",
"@graphql-codegen/typescript-resolvers": "^2.7.5",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/d3-array": "^3.0.3",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.6",
"@types/node": "18.6.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"apollo": "^2.34.0",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.8.4"
}
}