-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 829 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 829 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
{
"name": "mimickit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"harness": "tsx --env-file=.env lib/cli/run-harness.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"next": "14.2.0",
"next-auth": "4.24.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-powerglitch": "^1.1.0",
"reactflow": "11.11.4",
"simple-git": "^3.27.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.11.30",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"eslint": "8.57.0",
"eslint-config-next": "14.2.0",
"tsx": "^4.19.0",
"typescript": "5.4.3",
"vitest": "^2.1.0"
}
}