-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "korero",
"version": "1.0.3",
"description": "A snippet that enables team communication for your app on any webpage.",
"main": "index.js",
"repository": "https://github.com/deve-sh/Korero",
"scripts": {
"compile": "tsc",
"bundle": "webpack",
"bundle:dev": "webpack --mode=development",
"build": "npm run compile && npm run bundle",
"build:dev": "npm run compile && npm run bundle:dev",
"dev": "node ./scripts/dev.js",
"prepub": "node ./scripts/prepub.js",
"pub": "cd dist && npm publish",
"test": "npx playwright test --workers=1"
},
"keywords": [],
"author": "Devesh Kumar",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.31.1",
"@types/md5": "^2.3.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/ua-parser-js": "^0.7.36",
"chokidar": "^3.5.3",
"express": "^4.18.2",
"playwright": "^1.31.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@medv/finder": "^2.1.0",
"firebase": "^9.16.0",
"jotai": "^2.0.0",
"md5": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ua-parser-js": "^1.0.33"
}
}