-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "gotiny",
"version": "1.4.0",
"description": "GoTiny is a lightweight link shortener API",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -w & nodemon dist",
"build": "tsc -p .",
"prestart": "yarn build",
"start": "node dist",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/robvanbakel/gotiny-api.git"
},
"author": {
"name": "Rob van Bakel",
"email": "robbakel@gmail.com",
"url": "https://robvanbakel.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/robvanbakel/gotiny-api/issues"
},
"homepage": "https://github.com/robvanbakel/gotiny-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^6.6.0",
"redis": "^4.5.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.20",
"typescript": ">=4.4"
}
}