-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 973 Bytes
/
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
{
"scripts": {
"webpack-build": "webpack --mode production",
"update-readme": "node scripts/update-index.js public/index.html dist/index.js",
"build": "yarn webpack-build && yarn update-readme"
},
"babel": {
"plugins": [
"@babel/plugin-transform-react-jsx"
]
},
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.2",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"css-loader": "6.8.1",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.0.3",
"style-loader": "3.3.3",
"ts-loader": "9.5.0",
"typescript": "5.2.2",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"preact": "10.18.1",
"react-toastify": "^9.1.3"
}
}