generated from aeksco/react-typescript-web-extension-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
102 lines (102 loc) · 3.12 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "gamkenbot",
"version": "2.0.0",
"description": "Web Extension starter kit built with React, TypeScript, Tailwind CSS, EsLint, Prettier & Webpack",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --config webpack.dev.js",
"test": "jest",
"lint:check": "eslint -c ./.eslintrc.js \"src/**/*.ts*\"",
"lint": "npm run lint:check -- --fix",
"lint:fix": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prettify:check": "prettier \"src/**/*.ts*\"",
"prettify": "prettier --write \"src/**/*.ts*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/shilomagen/passport-extension.git"
},
"keywords": [
"react",
"typescript",
"chrome",
"extension",
"boilerplate"
],
"author": "Shilo Magen",
"license": "MIT",
"bugs": {
"url": "https://github.com/shilomagen/passport-extension/issues"
},
"homepage": "https://github.com/shilomagen/passport-extension#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/chrome": "^0.0.124",
"@types/jest": "^29.5.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^14.11.8",
"@types/react": "^18.0.2",
"@types/react-dom": "^18.0.2",
"@types/react-test-renderer": "^17.0.1",
"@types/uuid": "^9.0.1",
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"autoprefixer": "^10.4.1",
"babel-core": "^6.26.3",
"babel-jest": "^29.5.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.5.0",
"lodash.merge": "^4.6.2",
"mini-css-extract-plugin": "^2.7.5",
"nock": "^13.3.0",
"npm": "^9.6.2",
"postcss": "^8.4.21",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.1.2",
"react-test-renderer": "^18.2.0",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.2.0",
"antd": "^5.3.2",
"axios": "^1.3.4",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"interval-plus": "^1.0.2",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylis": "^4.1.3",
"stylis-plugin-rtl": "^2.1.1",
"ts-essentials": "^9.3.1",
"ts-pattern": "^4.2.2",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.9.0"
}
}