-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 766 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
{
"name": "survai",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"tailwindcss -i ./public/css/input.css -o ./public/css/output.css --watch\""
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"concurrently": "^9.1.2",
"connect-livereload": "^0.6.1",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"livereload": "^0.9.3",
"nodemon": "^3.1.9",
"tailwindcss": "^3.4.17"
}
}