-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"predev": "convex dev --until-success",
"build": "tsc && next build",
"dev:backend": "convex dev",
"dev:frontend": "next dev",
"testFunctionsExistingBackend": "just convex deploy && just convex env set IS_TEST true && jest",
"testFunctions": "node backendHarness.js 'npm run testFunctionsExistingBackend'"
},
"dependencies": {
"@auth/core": "^0.37.0",
"@convex-dev/aggregate": "^0.1.12",
"@convex-dev/auth": "^0.0.81-alpha.0",
"chess.js": "^1.0.0-beta.3",
"convex": "^1.18.1",
"convex-helpers": "^0.1.25",
"js-chess-engine": "^1.0.2",
"next": "^14.2.13",
"next-themes": "^0.3.0",
"react": "18.2",
"react-chessboard": "^4.6.0",
"react-dom": "18.2",
"react-router-dom": "^6.9.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "~18.15.3",
"@types/react": "18.2",
"@types/react-dom": "18.2",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
"typescript": "^5.0.2"
}
}