-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "pert-with-wings",
"private": true,
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:firefox": "vite --https -- --browser=firefox",
"build:watch": "vite build --watch",
"build": "yarn clean:extensions && tsc && vite build",
"deploy": "yarn test && yarn clean:extensions && tsc && vite build",
"preview": "vite preview",
"test": "vitest --run",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "yarn lint --fix",
"clean:extensions": "rimraf extensions"
},
"dependencies": {
"classnames": "^2.3.2",
"i18next": "^22.4.15",
"partysocket": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.2",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.7",
"@types/chrome": "^0.0.270",
"@types/dom-navigation": "^1.0.3",
"@types/puppeteer": "^7.0.4",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^4.2.1",
"chrome-types": "^0.1.303",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"ghersay": "git+https://github.com/thilinaaligent/ghersay.git#main",
"jszip": "^3.10.1",
"prettier": "^2.8.3",
"puppeteer": "^19.5.2",
"rimraf": "^4.1.1",
"typescript": "^5.4.5",
"uuid-by-string": "^4.0.0",
"vite": "^4.0.4",
"vitest": "^0.28.3"
},
"engines": {
"node": ">=18.12.x"
}
}