-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "rekor-search-ui",
"version": "0.1.0",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "./hack/generate_types.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.4.4",
"@mui/lab": "5.0.0-alpha.114",
"@mui/material": "^5.5.0",
"@peculiar/x509": "1.8.4",
"js-yaml": "^4.1.0",
"moment": "^2.29.3",
"next": "^13.5.4",
"pvtsutils": "^1.3.2",
"react": "^18.0.0-rc.1",
"react-dom": "^18.0.0-rc.1",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.31.0",
"react-syntax-highlighter": "^15.5.0",
"rekor": "^0.2.0",
"sass": "^1.49.9",
"sharp": "^0.30.5"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@codecov/webpack-plugin": "^0.0.1-beta.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"@types/react": "18.0.9",
"@types/react-syntax-highlighter": "^15.5.1",
"caniuse-lite": "^1.0.30001441",
"eslint": "8.10.0",
"eslint-config-next": "13.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.0",
"typescript": "4.6.2"
}
}