-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 854 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 854 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
{
"name": "tinylink",
"version": "1.0.0",
"description": "A simple URL shortener with Node.js, Express, and PostgreSQL",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon server.js",
"dev:client": "cd client && npm run dev",
"build": "cd client && npm run build",
"migrate": "node scripts/migrate.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.11.3"
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}