-
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) · 728 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 728 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": "url-shortner",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --files src/index.ts",
"build": "prisma generate && tsc",
"start": "prisma generate && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mongoose": "^8.14.0",
"nanoid": "^5.1.5",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@tsconfig/node23": "^23.0.1",
"@types/express": "^5.0.1",
"@types/node": "^22.15.2",
"@types/qrcode": "^1.5.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}