-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 2.34 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
{
"name": "@peculiar/fortify-tools",
"homepage": "https://tools.fortifyapp.com",
"version": "2.0.8",
"author": "PeculiarVentures Team",
"license": "MIT",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@faker-js/faker": "^9.3.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/react": "^16.1.0",
"@types/lodash": "^4.17.13",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.2.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"vitest-dom": "^0.1.1"
},
"dependencies": {
"@peculiar/certificates-viewer-react": "^4.3.1",
"@peculiar/fortify-webcomponents-react": "^4.0.9",
"@peculiar/react-components": "^0.6.7",
"@peculiar/x509": "^1.12.3",
"clsx": "^2.1.1",
"i18next": "^24.0.5",
"lodash": "^4.17.21",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.1.2",
"react-i18next": "^15.1.4",
"react-use": "^17.6.0"
},
"resolutions": {
"@webcrypto-local/client": "1.7.7",
"pvtsutils": "1.3.6",
"vite": "^6.0.3"
},
"scripts": {
"start": "vite --port 3003",
"lint": "eslint ./src ",
"lint:ts": "tsc --noEmit",
"build": "tsc && vite build --emptyOutDir",
"preview": "vite preview --port 3005",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"storybook": "storybook dev -p 6006",
"test:ci": "vitest run --root src/",
"test:unit": "vitest --root src/",
"coverage": "vitest run --coverage --root src/",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
}
}