-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "fly-shortener",
"version": "1.3.2",
"description": "A basic Redis-backed link shortener backed by Google Sheets.",
"author": {
"name": "Benjamin Chrobot",
"email": "[email protected]",
"url": "https://benjaminchrobot.com"
},
"license": "MIT",
"repository": "github:politics-rewired/fly-shortener",
"bugs": "https://github.com/politics-rewired/fly-shortener/issues",
"scripts": {
"start": "ts-node src/server.ts",
"build": "tsc",
"style:check": "run-s lint:check format:check",
"style:fix": "run-s lint:fix format:fix",
"lint:check": "eslint --ext js,ts .",
"lint:fix": "eslint --ext js,ts --fix .",
"format:check": "prettier --check './**/*.{js,ts,md,json}' --config ./.prettierrc.js",
"format:fix": "prettier --write './**/*.{js,ts,md,json}' --config ./.prettierrc.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version"
},
"dependencies": {
"dotenv": "^10.0.0",
"envalid": "^7.2.1",
"express": "^4.17.1",
"ioredis": "^5.0.1",
"jsrsasign": "^10.4.0",
"lets-get-meta": "^2.1.1",
"luxon": "^2.0.2",
"promise-retry": "^2.0.1",
"superagent": "^6.1.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/luxon": "^2.0.1",
"@types/promise-retry": "^1.1.3",
"@types/superagent": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"lint-staged": {
"./**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}