-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 753 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 753 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
{
"name": "hexa-space",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"typecheck": "clear; tsc"
},
"dependencies": {
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"eslint-config-next": "^14.2.5",
"next": "^14.2.5",
"node-json-db": "^2.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remeda": "^1.9.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^21.1.0",
"vitest": "^3.0.9"
}
}