-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 961 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 961 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
33
34
{
"name": "link-shortener-nodejs-postgres",
"version": "1.0.0",
"description": "URL shortener running on Node.js with PostgreSQL as a storage solution",
"main": "index.ts",
"scripts": {
"test": "test",
"build": "tsc",
"lint": "npx eslint . && prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"migrate": "npx ts-node db/migrate.ts",
"dev": "nodemon",
"start": "npm i && nodemon"
},
"author": "overdd",
"license": "GNU GENERAL PUBLIC LICENSE",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"sequelize": "^6.35.2",
"ts-node": "^10.9.2",
"typescript": "5.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pg": "^8.11.3",
"ytid": "^1.3.0"
}
}