-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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
{
"name": "voice-mate-gpt",
"version": "1.0.0",
"description": "Voice Mate GPT: Enhance your OpenAI chat experience with this TypeScript-developed plugin for intuitive and advanced voice interactions.",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.test-page.js",
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint:check": "eslint 'src/**/*.{ts,tsx}'",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "Álli Terhorst",
"repository": {
"type": "git",
"url": "https://github.com/alliterhorst/voice-mate-gpt.git"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/dom-speech-recognition": "^0.0.4",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.5.0",
"prettier": "^3.2.5",
"rimraf": "^3.0.2 ",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-ext-reloader": "^1.1.12",
"webpack-merge": "^5.0.0"
}
}