-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "chrome-extension-mv3-react-typescript-hotReload-template",
"description": "A pure template project of chrome extension using React and typescript with hotReload imported. Can directly use it to dev.",
"version": "0.1.0",
"private": true,
"author": "Rickyoung221",
"repository": {
"type": "git",
"url": "[email protected]:Rickyoung221/chrome-extension-mv3-react-typescript-hotReload-template.git"
},
"bugs": {
"url": "https://github.com/Rickyoung221/chrome-extension-mv3-react-typescript-hotReload-template/issues"
},
"dependencies": {
"@craco/craco": "^6.4.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"@types/chrome": "^0.0.181",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "^5.0.1",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start --config config/craco.config.dev.js ",
"build": "yarn run clean && craco build --config config/craco.config.prod.js INLINE_RUNTIME_CHUNK=false && rm build/index.html",
"test": "craco test --config config/craco.config.js",
"eject": "react-scripts eject",
"clean": "rimraf build/"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"ts-loader": "^9.2.8"
}
}