forked from get-convex/fullstack-convex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1022 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
36
{
"private": true,
"scripts": {
"dev": "npm-run-all dev:init --parallel dev:server dev:client",
"build": "tsc && next build",
"dev:server": "convex dev",
"dev:client": "next dev",
"dev:init": "convex dev --until-success",
"start": "next start"
},
"dependencies": {
"@auth0/auth0-react": "^2.0.1",
"convex": "^1.0.2",
"next": "latest",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.3.0",
"@types/node": "^18.11.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.7.3"
}
}