-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "nba-winamax",
"version": "0.0.1",
"description": "Little script converting NBA stats into Winamax points",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"commit": "git-cz",
"lint": "tslint ./src/*.ts{,x} ./src/**/*.ts{,x} --project tsconfig.json",
"precommit": "lint-staged",
"pretest": "npm run lint && npm run build",
"prettier": "prettier --write '{src,test}/**/*.ts'",
"start": "ts-node src/index.ts",
"start:oldschool": "npm run build && node dist/index.js"
},
"files": [
"dist/src"
],
"keywords": [
"node",
"typescript",
"nba",
"winamax",
"inquirer"
],
"author": "ccoeurderoy",
"license": "ISC",
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --list-different \"{src,test}/**/*.ts\""
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/inquirer": "^7.3.1",
"@types/lodash": "^4.14.165",
"@types/pino": "^6.3.4",
"@yelloan/tslint": "^0.3.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2"
},
"dependencies": {
"inquirer": "^7.3.3",
"inquirer-datepicker-prompt": "^0.4.2",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"nba": "^4.13.0",
"pino": "^6.7.0",
"pino-pretty": "^4.3.0"
}
}