-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.29 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": "@formant/view-embed-react-wrapper",
"homepage": "http://formantio.github.io/view-embed-react-wrapper",
"private": false,
"version": "1.3.0",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"dev": "vite",
"build": "tsc --p ./tsconfig.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"dependencies": {
"@iframe-resizer/react": "^5.2.1",
"axios": "^1.7.7",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"react-datetime-picker": "^6.0.1",
"short-uuid": "^5.2.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.7",
"@chromatic-com/storybook": "^2.0.2",
"@storybook/addon-essentials": "^8.3.1",
"@storybook/addon-interactions": "^8.3.1",
"@storybook/addon-links": "^8.3.1",
"@storybook/addon-onboarding": "^8.3.1",
"@storybook/addon-storysource": "^8.3.2",
"@storybook/blocks": "^8.3.1",
"@storybook/react": "^8.3.1",
"@storybook/react-vite": "^8.3.1",
"@storybook/test": "^8.3.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.3.0"
}
}