-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
112 lines (112 loc) · 3.27 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
{
"name": "pln-roadmap",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NO_SW=true next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"test:ci": "NO_SW=true yarn lint && jest --ci --coverage && yarn test:e2e",
"test:e2e": "playwright test"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.12",
"@chakra-ui/react": "^2.4.9",
"@chakra-ui/system": "^2.4.0",
"@chakra-ui/table": "^2.0.16",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@hookstate/core": "^4.0.0",
"@ipfs-shipyard/ignite-metrics": "1.2.1",
"@octokit/core": "^4.0.0",
"@octokit/graphql-schema": "^12.41.1",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^4.3.1",
"@octokit/rest": "^19.0.5",
"@types/d3": "^7.4.0",
"@types/lodash": "^4.14.186",
"@visx/text": "^3.0.0",
"awesome-toast-component": "^2.0.6",
"chakra-ui-markdown-renderer": "^4.1.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"d3": "^7.6.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"dexie": "^3.2.3",
"eslint-config-airbnb-typescript": "^17.0.0",
"framer-motion": "^7.10.3",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.1",
"knuth-shuffle": "^1.0.8",
"linkedom": "^0.14.17",
"lodash": "^4.17.21",
"next": "^12.3.1",
"next-pwa": "^5.6.0",
"next-transpile-modules": "^9.0.0",
"octokit": "^2.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-input-slider": "^6.0.1",
"react-is": "^18.2.0",
"react-markdown": "^8.0.3",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.6",
"web-vitals": "^3.1.1",
"workbox-broadcast-update": "^6.5.4"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@next/eslint-plugin-next": "^13.0.5",
"@octokit/types": "^8.0.0",
"@playwright/test": "^1.28.1",
"@primer/primitives": "^7.10.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/cheerio": "^0.22.31",
"@types/jest": "^29.2.3",
"@types/jsdom": "^20.0.0",
"@types/next-pwa": "^5.6.1",
"@types/node": "^18.11.0",
"@types/react": "^18.0.21",
"@types/react-dom": "18.0.6",
"@types/workbox-strategies": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.25.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-primer-react": "^1.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"path-to-regexp": "^6.2.1",
"playwright-chromium": "^1.28.1",
"prettier": "^2.7.1",
"react-icons": "^4.6.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"next-unused": {
"alias": {},
"include": [
"components",
"config",
"hooks",
"lib",
"pages",
"styles"
],
"exclude": [],
"entrypoints": []
}
}