forked from aeksco/react-typescript-web-extension-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.41 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": "authier-chrome-extension",
"version": "0.0.1",
"description": "A Chrome Extension starter kit built with React, TypeScript, SCSS, Bootstrap, EsLint, Prettier & Webpack",
"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*\""
},
"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.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/chrome": "^0.0.144",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-css-modules": "^2.1.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}