-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1009 Bytes
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
{
"name": "astute-crow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm:dev:vite\" \"npm:dev:convex\"",
"dev:vite": "vite",
"dev:convex": "convex dev",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit && cd convex && tsc --noEmit",
"typecheck:watch": "concurrently \"tsc --noEmit --watch\" \"cd convex && tsc --noEmit --watch\"",
"convex:codegen": "convex codegen"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MrSmart00/astute-crow.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/MrSmart00/astute-crow/issues"
},
"homepage": "https://github.com/MrSmart00/astute-crow#readme",
"devDependencies": {
"@types/node": "^24.3.3",
"concurrently": "^9.2.1",
"typescript": "^5.9.2",
"vite": "^7.1.5"
},
"dependencies": {
"convex": "^1.27.0"
}
}