-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "reddit-archiver-backend",
"version": "0.1.0",
"description": "Tool for archiving Reddit threads",
"main": "index.js",
"scripts": {
"test": "npm test",
"ts:watch": "tsc -w",
"start": "node index",
"lint": "eslint --color ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/general-programming/reddit-archiver-backend.git"
},
"keywords": [
"reddit",
"archiver"
],
"author": "General Programming",
"license": "MIT",
"bugs": {
"url": "https://github.com/general-programming/reddit-archiver-backend/issues"
},
"homepage": "https://github.com/general-programming/reddit-archiver-backend#readme",
"devDependencies": {
"@types/node": "^13.1.6",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.7",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.1",
"typescript": "^3.7.4"
},
"dependencies": {
"comedy": "^2.1.1",
"typeorm": "^0.2.22"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}