forked from sigstore/rekor-search-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "rekor-search-ui",
"version": "0.1.0",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"cy:headless": "cypress run",
"cy:open": "cypress open",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "next lint",
"generate": "./hack/generate_types.sh",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@patternfly/patternfly": "^5.2.0",
"@patternfly/react-core": "^5.2.0",
"@peculiar/x509": "1.8.4",
"js-yaml": "^4.1.0",
"moment": "^2.29.3",
"next": "^13.5.6",
"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",
"sharp": "^0.33.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@chromatic-com/storybook": "^1.3.2",
"@storybook/addon-essentials": "^8.0.7",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.7",
"@storybook/addon-onboarding": "^8.0.7",
"@storybook/blocks": "^8.0.7",
"@storybook/nextjs": "^8.0.7",
"@storybook/react": "^8.0.7",
"@storybook/test": "^8.0.8",
"@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",
"cypress": "^13.8.1",
"eslint": "8.10.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "^3.0.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"storybook": "^8.0.7",
"typescript": "4.6.2"
}
}