-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.22 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.22 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
{
"name": "bitpart-dashboard",
"version": "1.0.8",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:strict": "next lint '*/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write */**/*.{js,jsx,json,ts,css,md}",
"prepare": "husky",
"data-migration:add-instance": "npx tsx ./prisma/migrations/20250902173425_add_instance_to_settings_and_bot/data-migration.ts",
"data-migration:update-instance": "npx tsx ./prisma/migrations/20250902190702_update_current_instance_to_last_instance/data-migration.ts",
"data-migration:add-name-to-state": "npx tsx ./prisma/migrations/20250902192248_add_name_to_state/data-migration.ts",
"data-migration:add-unique-name-to-state": "npx tsx ./prisma/migrations/20250902192356_add_unique_to_name_state/data-migration.ts"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@chakra-ui/react": "^3.2.3",
"@emotion/react": "^11.14.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^6.4.1",
"@prisma/extension-accelerate": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"bcryptjs": "^3.0.2",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"lint-staged": "^15.5.1",
"next": "^15.1.0",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.6",
"papaparse": "^5.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"random-word-slugs": "^0.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"ws": "^8.18.1",
"yup": "^1.5.0"
},
"devDependencies": {
"@types/node": "22.13.8",
"@types/papaparse": "^5.3.15",
"@types/react": "19.0.10",
"@types/ws": "^8.18.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prisma": "^6.4.1",
"tsx": "^4.19.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}