-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "encurtador-de-links",
"version": "1.0.0",
"description": "Lets you shorten links and redirect short links to source links",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/janrsilva/encurtador-de-links-nodejs.git"
},
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"dev.docker": "nodemon -L --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"test": "jest"
},
"keywords": [
"encurtador",
"links",
"shortener"
],
"author": "Janderson Silva @janrsilva",
"license": "ISC",
"bugs": {
"url": "https://github.com/janrsilva/encurtador-de-links-nodejs/issues"
},
"homepage": "https://github.com/janrsilva/encurtador-de-links-nodejs#readme",
"dependencies": {
"@types/express": "^4.17.6",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"mongodb": "^3.5.5"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/mongodb": "^3.5.5",
"@types/node": "^13.11.1",
"@types/shelljs": "^0.8.7",
"fs-extra": "^9.0.0",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}