-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pokole",
"version": "1.0.1",
"description": "A simple and fast URL shortener that uses NodeJS and PostgreSQL.",
"main": "dist/index.js",
"typings": "/dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp -r src/static dist/",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexthemaster/pokole.git"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true,
"rules": {
"@typescript-eslint/no-non-null-assertion": 0
}
},
"keywords": [
"pokole",
"url",
"url shortener",
"shortener",
"bitly",
"tinyurl"
],
"author": "Alex Kovacs",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexthemaster/pokole/issues"
},
"homepage": "https://github.com/alexthemaster/pokole",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"jsonwebtoken": "^9.0.0",
"nanoid": "^3.1.12",
"node-fetch": "^2.6.7",
"pg": "^8.3.2",
"private-ip": "^2.0.0",
"serve-static": "^1.14.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/fs-extra": "^9.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^7.14.6",
"@types/private-ip": "^1.0.0",
"@types/serve-static": "^1.13.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}