-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "shorten",
"version": "1.0.0",
"description": "Fast url shorten with dynamodb",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"start:cluster": "npm run build && node build/cluster.js",
"start:dev": "nodemon"
},
"author": "Bonomi Jacopo",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.145.0",
"@aws-sdk/lib-dynamodb": "^3.145.0",
"@types/lowdb": "^1.0.11",
"cluster": "^0.7.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"express-validator": "^6.14.2",
"morgan": "^1.10.0",
"nanoid": "^3.3.4",
"node-cache": "^5.1.2",
"node-ts-cache": "^4.4.0",
"node-ts-cache-storage-memory": "^4.4.0",
"random-word-slugs": "^0.1.6",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.6.2",
"@types/node-cache": "^4.2.5",
"@types/swagger-ui-express": "^4.1.3",
"cpy-cli": "^4.1.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}