-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "Url shortener",
"main": "index.js",
"engines": {
"yarn": "1.x",
"node": "12.x"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon dist/app.js",
"start": "node dist/app.js",
"heroku-postbuild": "yarn build && cd web && yarn install --production=false && yarn run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-slow-down": "^1.3.1",
"helmet": "^4.1.1",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"nanoid": "^3.1.12",
"path": "^0.12.7",
"tsc": "^1.20150623.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/express-slow-down": "^1.3.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.2",
"@types/yup": "^0.29.7",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}