-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 919 Bytes
/
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
{
"name": "url-short-example",
"version": "1.0.0",
"description": "link shortener",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "nodemon build/index.js"
},
"keywords": [
"typescript",
"node"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/morgan": "^1.9.0",
"@types/shortid": "0.0.29",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"helmet": "^3.22.0",
"mongoose": "^5.9.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.2",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/helmet": "0.0.46",
"@types/mongoose": "^5.7.11",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.3.3"
}
}