-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 965 Bytes
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
{
"name": "blackjack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^0.1.0",
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"format": "prettier -c --write .",
"format:report": "prettier -c .",
"lint": "eslint --fix --ext js,ts,tsx --max-warnings 0 src",
"lint:report": "eslint --ext js,ts,tsx --max-warnings 0 src"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"lodash": "^4.18.1",
"readline": "^1.3.0",
"readline-promises": "^1.3.1"
}
}