-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "apis",
"version": "0.2.0",
"description": "assorted API endpoints",
"main": "index.js",
"repository": "https://github.com/rkpop/apis",
"author": "Jonathan Nicholas <Jonathan.Nicholas@protonmail.com>",
"license": "MIT",
"private": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "nodemon index.ts",
"build": "tsc"
},
"lint-staged": {
"linters": {
"*.{js,ts,json,css,md}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"ignore": [
"package.json",
"tsconfig.json",
".eslintrc.json"
]
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/cheerio": "^0.22.11",
"@types/express": "^4.16.1",
"@types/node": "^12.0.2",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.0",
"moment": "^2.24.0"
}
}