-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
80 lines (80 loc) · 2.84 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
{
"name": "react-typescript-chrome-extension-starter",
"version": "2.0.0",
"description": "Web Extension starter kit built with React, TypeScript, Tailwind CSS, EsLint, Prettier & Webpack",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --config webpack.dev.js",
"test": "jest --config=jest.config.js",
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prettify": "prettier --write \"src/**/*.ts*\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeksco/react-typescript-chrome-extension-starter.git"
},
"keywords": [
"react",
"typescript",
"chrome",
"extension",
"boilerplate"
],
"author": "Alexander Schwartzberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/aeksco/react-typescript-chrome-extension-starter/issues"
},
"homepage": "https://github.com/aeksco/react-typescript-chrome-extension-starter#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-interactions": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@storybook/testing-library": "^0.0.7",
"@types/chrome": "^0.0.124",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-test-renderer": "^17.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",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.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",
"jest": "^26.5.3",
"jest-css-modules": "^2.1.0",
"postcss": "^8.4.31",
"postcss-loader": "^6.2.1",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.0.8",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webextension-polyfill": "^0.9.0"
}
}