generated from verida/react-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-app-template",
"version": "1.0.0",
"private": true,
"scripts": {
"version": "npx genversion --es6 --double ./src/config/version.ts",
"postinstall": "yarn run version",
"predev": "yarn run version",
"dev": "next dev -p 3005",
"prebuild": "yarn run version",
"build": "next build",
"prestart": "yarn run version",
"start": "next start",
"check:format": "prettier src --check",
"check:lint": "eslint src",
"check:types": "tsc --noEmit",
"check": "yarn run check:format && yarn run check:lint && yarn run check:types",
"fix:format": "prettier src --write",
"fix:lint": "eslint src --fix",
"fix": "yarn run fix:format && yarn run fix:lint"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-alert-dialog": "^1.1.13",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-context-menu": "^2.2.14",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.6",
"@tanstack/query-sync-storage-persister": "^5.75.5",
"@tanstack/react-query": "^5.75.5",
"@tanstack/react-query-persist-client": "^5.75.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"genversion": "^3.2.0",
"lucide-react": "^0.507.0",
"next": "^15.3.2",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^9.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tanstack/react-query-devtools": "^5.75.5",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.15.14",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@verida/types": "^4.4.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.26.0",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-prettier": "^5.4.0",
"file-loader": "^6.2.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}