-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "lynk",
"version": "1.0.0",
"description": "Shorten and Track URLs, with Lynk.",
"main": "dist/index.js",
"scripts": {
"test": "nodemon .",
"start": "node .",
"build": "sh scripts/build.sh",
"format": "npx prettier --config .prettierrc --write \"src/**/*.ts\"",
"format:watch": "npx onchange \"src/**/*.ts\" \"*.json\" \"*.md\" \"public/\" -- prettier --write --ignore-unknown {{changed}}",
"lint": "npx eslint -c .eslintrc.json src/",
"lint:watch": "npx onchange \"src/**/*.ts\" -- eslint -c .eslintrc.json --fix {{changed}}",
"lint:fix": "npx eslint -c .eslintrc.json --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksplatdev/Lynk.git"
},
"keywords": [
"Link",
"URL",
"shortener",
"fast",
"simple",
"track"
],
"author": "Bleart Emini",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksplatdev/Lynk/issues"
},
"homepage": "https://github.com/ksplatdev/Lynk#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/morgan": "^1.9.3",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"onchange": "^7.1.0",
"prettier": "^2.3.2",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"socket.io": "^4.1.3",
"xss": "^1.0.9"
}
}