-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
57
58
{
"name": "frodo-url-shortener",
"version": "1.0.0",
"description": "Frodo, the URL shortener.",
"main": "index.js",
"scripts": {
"start": "concurrently npm:build npm:start-server ",
"build": "npx tsc",
"start-server": "node dist/server.js",
"dev": "concurrently npm:watch*",
"watch": "nodemon -q dist/server.js",
"watch-ts": "npx tsc --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"joi": "^17.7.1",
"morgan": "^1.10.0",
"murmurhash3": "^0.5.0",
"redis": "^4.6.4",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"concurrently": "^7.6.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^29.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
},
"keywords": [
"url-shortener",
"murmurhash3"
],
"author": "sigfried",
"license": "MIT"
}