-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "mobx-query-youtube",
"version": "0.0.0",
"private": true,
"scripts": {
"backend": "nodemon --watch backend backend/movies-server.ts",
"build": "vite build",
"dev": "concurrently \"pnpm run frontend\" \"pnpm run backend\" ",
"frontend": "vite",
"prettier-fix": "prettier -w",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/react-query": "^4.29.5",
"axios": "^1.4.0",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-hook-form": "^7.43.9",
"react-ioc": "^1.0.0",
"react-router-dom": "^6.10.0",
"type-fest": "^3.9.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.29.5",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-react-swc": "^3.3.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"fastify": "^4.17.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"rimraf": "^4.4.1",
"rollup-plugin-visualizer": "^5.9.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.5",
"vite": "^4.3.3",
"vite-tsconfig-paths": "^3.6.0"
}
}