-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 834 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 834 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
{
"name": "nameify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build:css && node server.js",
"dev": "nodemon server.js",
"build:css": "tailwindcss -i ./src/input.css -o ./public/styles.css --minify",
"watch:css": "tailwindcss -i ./src/input.css -o ./public/styles.css --watch",
"render": "npm install"
},
"keywords": [],
"author": "Brandon Jenkins",
"license": "ISC",
"type": "module",
"dependencies": {
"@mistralai/mistralai": "^1.10.0",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"daisyui": "^5.3.9",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18"
}
}