-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "passenger-contacts",
"version": "1.0.0",
"description": "A React app with React Query, React Router, Axios, and Webpack",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"format": "prettier . --write",
"lint": "eslint src/**/*.js src/**/*.jsx",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"@tanstack/react-query": "^5.15.0",
"@tanstack/react-query-devtools": "^5.15.5",
"@tanstack/react-table": "^8.11.2",
"axios": "^1.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-router-dom": "^6.21.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"cypress": "^13.3.1",
"daisyui": "^4.4.24",
"html-webpack-plugin": "^5.6.0",
"postcss-loader": "^7.3.4",
"prettier": "^3.1.1",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}