-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
145 lines (145 loc) · 4.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@nethesis/phone-island",
"author": "Nethesis",
"version": "0.8.43",
"description": "NethVoice CTI Phone Island",
"keywords": [
"nethserver",
"nethesis",
"nethvoice",
"phone",
"island"
],
"homepage": "https://github.com/nethesis/phone-island#readme",
"bugs": "https://github.com/nethesis/dev/issues",
"repository": {
"type": "git",
"url": "https://github.com/nethesis/phone-island.git"
},
"private": false,
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"targets": {
"main": false,
"types": false,
"default": {
"distDir": "./dist-widget"
}
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^2.2.0",
"@nethesis/nethesis-light-svg-icons": "github:nethesis/Font-Awesome#ns-light",
"@nethesis/nethesis-solid-svg-icons": "github:nethesis/Font-Awesome#ns-solid",
"@rematch/core": "^2.2.0",
"@rematch/immer": "^2.1.3",
"@swc/helpers": "^0.4.12",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/user-event": "^12.1.10",
"framer-motion": "^8.5.5",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"js-base64": "^3.7.3",
"mic-check": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.5",
"react-moment": "^1.1.2",
"react-redux": "^8.0.5",
"react-scripts": "^5.0.1",
"react-tooltip": "^5.28.0",
"socket.io-client": "^4.5.3",
"styled-components": "^5.3.6",
"webrtc-adapter": "^9.0.1"
},
"scripts": {
"start": "react-scripts start",
"dev": "storybook dev -p 6006",
"test": "react-scripts test",
"watch": "rollup -w -c",
"watch:css": "npx tailwindcss -o ./dist/index.css --watch",
"build": "rm -rf ./dist && npm run build:css && rollup -c",
"build:css": "NODE_ENV=production npx tailwindcss -o ./dist/index.css --minify",
"build:win": "del /s /q dist && npm run build:wincss && rollup -c --configPlugin typescript",
"build:wincss": "set NODE_ENV=production npx tailwindcss -o ./dist/index.css --minify",
"build:widget": "parcel build ./src/index.widget.tsx --no-source-maps",
"serve:widget": "rm -rf ./widget-example/static/* && cp -rf ./dist-widget/* ./widget-example/static && npx http-server ./widget-example -o -c-1",
"build-storybook": "storybook build -s public",
"release": "npm publish",
"release:widget": "np patch",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"bump": "node bump-version.js",
"build-pack": "npm run bump && npm run build && npm pack"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@parcel/transformer-typescript-types": "^2.8.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/addon-actions": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-interactions": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/node-logger": "7.6.20",
"@storybook/preset-create-react-app": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "^7.6.20",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@types/audioworklet": "^0.0.46",
"@types/jest": "^29.2.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.20",
"babel": "^6.23.0",
"babel-plugin-named-exports-order": "^0.0.2",
"buffer": "^5.7.1",
"css-loader": "^7.1.2",
"eslint-plugin-storybook": "^0.9.0",
"np": "^7.6.2",
"parcel": "^2.0.0",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^2.8.0",
"prop-types": "^15.8.1",
"rollup": "^2.79.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.6.20",
"style-loader": "^4.0.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.16",
"typescript": "^4.8.4",
"webm-duration-fix": "^1.0.4",
"webpack": "^5.74.0"
},
"overrides": {
"nth-check": "^2.0.1"
},
"license": "GPL-3.0-or-later"
}