-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "chrome-extension-react-boilerplate",
"version": "1.0.0",
"description": "Simple Chrome extension React boilerplate.",
"repository": "[email protected]:yafkari/chrome-extension-react-boilerplate.git",
"author": "yafkari",
"license": "MIT",
"private": false,
"scripts": {
"dev": "webpack --watch --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext ts,tsx"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-react": "^7.28.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.5",
"react-test-renderer": "^17.0.2",
"sass": "^1.45.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"keywords": [
"chrome",
"extension",
"react"
]
}