forked from existence-master/Sentient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 730 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 730 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
{
"private": true,
"name": "client",
"description": "a completely private, decentralized and interactive AI companion",
"version": "2.0.0",
"author": "existence",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"next": "^14.2.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.2.2",
"typewriter-effect": "^2.21.0"
},
"devDependencies": {
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8.0.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.0.0"
}
}