-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
{
"name": "chrome-react-extension-example",
"version": "0.1.0",
"private": true,
"proxy": "http://0.0.0.0:8080",
"dependencies": {
"@craco/craco": "^5.8.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"@mui/styles": "^5.4.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.199",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"clsx": "^1.1.1",
"cors-anywhere": "^0.4.4",
"eslint": "^8.50.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-forge": "^1.2.1",
"pastebin-js": "^1.0.6",
"pastebin-ts": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"typescript": "4.0.5",
"uuid": "^9.0.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false craco build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix --ext .js,.ts,.jsx,.tsx .",
"lint-staged": "prettier --write .",
"prepare": "husky"
},
"eslintConfig": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"@types/react": "^16.14.0"
},
"devDependencies": {
"@types/chrome": "^0.0.126",
"@types/node-forge": "^1.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/uuid": "^9.0.7",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3"
}
}