-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 918 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 918 Bytes
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
{
"name": "react-remote",
"packageManager": "yarn@4.2.1",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/preset-react": "7.23.3",
"babel-loader": "8.2.5",
"css-loader": "^7.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"serve": "13.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.1"
},
"scripts": {
"start": "webpack-cli serve",
"build": "webpack --mode production",
"serve": "serve dist -p 3002",
"clean": "rm -rf dist"
},
"dependencies": {
"@tanstack/react-query": "^5.32.0",
"clean-webpack-plugin": "^4.0.0",
"jotai": "^2.8.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.7"
}
}