-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 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
{
"name": "duolingo-memo",
"private": true,
"version": "0.1.0",
"description": "A browser extension to remember your answers in Duolingo",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"clean": "rimraf dist",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatiasDuhalde/duolingo-memo.git"
},
"keywords": [
"chrome",
"firefox",
"edge",
"duolingo",
"extension"
],
"author": "Matías Duhalde <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatiasDuhalde/duolingo-memo/issues"
},
"homepage": "https://github.com/MatiasDuhalde/duolingo-memo#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/lab": "^5.0.0-alpha.135",
"@mui/material": "^5.13.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.18",
"@types/chrome": "^0.0.240",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.1"
}
}