-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.85 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -- --port $PORT",
"localStart": "next build && next start -- --port 8001",
"lint": "next lint",
"type-check": "tsc",
"test": "jest"
},
"dependencies": {
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.123",
"@mui/material": "^5.11.13",
"@mui/styles": "^5.13.7",
"@svgr/webpack": "^6.5.0",
"@types/node": "^18.15.1",
"chart.js": "^3.9.1",
"chartjs-plugin-datalabels": "^2.2.0",
"cookie": "^0.5.0",
"dayjs": "^1.11.9",
"evergreen-org-crawler": "^0.2.3",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"next": "^12.3.1",
"next-transpile-modules": "^10.0.0",
"node-fetch": "^3.3.1",
"pino": "^8.11.0",
"react": "17.0.2",
"react-chartjs-2": "^4.3.1",
"react-dom": "17.0.2",
"react-swipeable-views": "^0.14.0",
"typescript": "^4.9.5",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/cookie": "^0.5.1",
"@types/jest": "^29.5.0",
"@types/lodash.debounce": "^4.0.7",
"@types/next": "^9.0.0",
"@types/node": "^18.15.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.50",
"@types/react-swipeable-views": "^0.13.1",
"babel-jest": "^29.5.0",
"babel-plugin-inline-react-svg": "^2.0.2",
"eslint": "8.33.0",
"eslint-config-next": "13.2.4",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.14.2"
}
}