-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.68 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
{
"private": true,
"name": "chat-widget-adapters",
"license": "MIT",
"engines": {
"node": "16",
"yarn": "1",
"npm": "please-use-yarn"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "git clean -fdX",
"test": "zx ./scripts/test.mjs",
"e2e": "zx ./scripts/e2e.mjs",
"lint": "zx ./scripts/lint.mjs",
"start": "zx ./scripts/start.mjs",
"build": "zx ./scripts/build.mjs",
"publish": "zx ./scripts/publish.mjs",
"check-pkgs": "zx ./scripts/check-pkgs.mjs",
"prepare": "zx ./scripts/prepare.mjs"
},
"dependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@manypkg/cli": "^0.19.1",
"@playwright/test": "^1.17.2",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-replace": "3.0.0",
"@rollup/plugin-typescript": "8.3.0",
"@types/estree": "0.0.50",
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-playwright": "^0.7.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest": "27.4.3",
"lerna": "4.0.0",
"lint-staged": "12.0.2",
"mitt": "3.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"regenerator-runtime": "^0.13.9",
"rimraf": "3.0.2",
"rollup": "2.60.0",
"rollup-plugin-dts": "4.0.1",
"rollup-plugin-terser": "7.0.2",
"serve": "^13.0.2",
"typescript": "4.5.2",
"vite": "^2.6.4",
"zx": "^4.2.0"
}
}