-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.89 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
{
"name": "pickly-web-extension",
"displayName": "Pickly",
"version": "1.1.2",
"description": "Pickly web extension",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JohnBra/web-extension.git"
},
"scripts": {
"build": "vite build",
"dev": "nodemon",
"zip": "rm -rf dist && vite build && zip extension.zip -r ./dist/*"
},
"type": "module",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-query-devtools": "^4.35.3",
"axios": "^1.5.0",
"emoji-picker-react": "^4.5.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-lazy-load-image-component": "^1.6.0",
"react-loader-spinner": "^5.4.5",
"react-router-dom": "^6.16.0",
"react-spring-bottom-sheet": "^3.4.1",
"string_decoder": "^1.3.0",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-svgr": "^3.2.0",
"webextension-polyfill": "^0.10.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@tanstack/eslint-plugin-query": "^4.34.1",
"@types/chrome": "^0.0.237",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-lazy-load-image-component": "^1.6.3",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-react-swc": "^3.0.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^11.1.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}