-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
35
36
37
38
39
40
{
"name": "url-shortener",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"engines": {
"node": ">=14.x"
},
"scripts": {
"build": "rm -rf ./dist && npx tsc",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/index.ts",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pecampelo/url-shortener.git"
},
"keywords": [],
"author": "Pedro Campelo Matheus, pedrohcmatheus@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/pecampelo/url-shortener/issues"
},
"homepage": "https://github.com/pecampelo/url-shortener#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.4.4"
},
"dependencies": {
"express": "^4.17.1",
"pg": "^8.7.1"
}
}