-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.98 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
{
"name": "react-chrome",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"prebuild": "rimraf dist",
"build-prod": "cross-env NODE_ENV=production webpack --config webpack.config.production.js && web-ext build -s dist/",
"build": "cross-env NODE_ENV=development webpack --config webpack.config.js"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-delay-render": "^0.1.2",
"react-dom": "^18.2.0",
"react-imported-component": "^6.5.3",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@hot-loader/react-dom": "^17.0.2",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.2",
"postcss-preset-env": "^8.4.1",
"react-hot-loader": "^4.13.1",
"rimraf": "^5.0.1",
"style-loader": "^3.3.3",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"env": {
"browser": true,
"node": true
}
},
"nodemonConfig": {
"ignore": [
"dist/*"
],
"watch": [
"src/**",
"public/**"
],
"exec": "yarn build",
"ext": "js,jsx,ts,tsx,html,css,scss,json,md"
},
"babel": {
"presets": [
["@babel/preset-env", { "modules": false }],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties"
]
},
"prettier": {
"semi": false,
"trailingComma": "all"
}
}