-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "opensauced-browser-extension",
"private": true,
"version": "1.16.0-beta.1",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --report-unused-disable-directives",
"format": "npm run lint -- --fix",
"test": "vitest run",
"e2e": "npx playwright test",
"coverage": "vitest run --coverage"
},
"dependencies": {
"date-fns": "^2.30.0",
"gpt-tokenizer": "^1.0.5",
"node-emoji": "^1.11.0",
"react": "^18.0.0",
"react-chrome-extension-router": "^1.4.0",
"react-dom": "^18.0.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"swiper": "^9.4.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@playwright/test": "^1.37.1",
"@types/chrome": "^0.0.237",
"@types/node": "^20.1.4",
"@types/node-emoji": "^1.8.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/coverage-c8": "^0.31.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.22",
"tailwindcss": "^3.3.1",
"typescript": "^4.6.3",
"vite": "^2.9.15",
"vitest": "^0.31.1"
}
}