-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.68 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
{
"name": "react-typescript-chrome-extension-starter",
"version": "1.0.0",
"description": "A Chrome Extension starter kit built with React, TypeScript, SCSS, Bootstrap, 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*\""
},
"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",
"@types/chrome": "^0.0.124",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.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",
"node-sass": "^6.0.1",
"prettier": "^2.1.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webextension-polyfill-ts": "^0.20.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"blockhash": "^0.2.0",
"bootstrap": "^4.5.2",
"browser-image-hash": "^0.0.5",
"dhash-image": "^1.2.1",
"html2canvas": "^1.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1"
}
}