-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.13 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
66
67
68
69
{
"name": "github-language-extension",
"version": "1.0.0",
"description": "github-language-extension",
"main": "index.js",
"scripts": {
"dev": "yarn watch",
"watch": "cp -p assets/icon-dev.png public/icon.png && INLINE_RUNTIME_CHUNK=false webpack --config webpack/webpack.dev.js --watch",
"build": "cp -p assets/icon.png public/icon.png && INLINE_RUNTIME_CHUNK=false webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"lint": "run-p -c -l lint:eslint lint:prettier",
"lint:eslint": "eslint . ",
"lint:prettier": " prettier -c .",
"test": "jest"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tokku5552/github-language-extension.git"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.4.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"axios": "^1.2.1",
"framer-motion": "^8.0.2",
"html-react-parser": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/chrome": "0.0.287",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all2": "^5.0.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2 ",
"terser": "^5.16.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"terser": "^5.16.1",
"semver": "^7.5.2"
}
}