-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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": "barstool-challenge",
"version": "1.0.0",
"repository": "https://github.com/tbosch82/barstool-challenge.git",
"author": "Taylor Bosch <[email protected]>",
"license": "MIT",
"scripts": {
"build:server": "cd server && tsc",
"start:server": "cd server && node dist/index.js",
"dev:server": "cd server && nodemon ./index.ts",
"dev:app": "cd app && vite",
"build:app": "cd app && tsc && vite build",
"lint:app": "cd app && eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongoose": "^7.1.1",
"node-fetch": "2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.1.4",
"@types/node-fetch": "^2.6.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"nodemon": "^2.0.22",
"typescript": "^5.0.4",
"vite": "^4.3.2"
}
}