-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "username-checker",
"version": "1.1.0",
"description": "A performant app to bulk check the availability of usernames",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon --exec ts-node --files src/index.ts",
"build": "tsc",
"prod": "node dist/index.js",
"format": "prettier --write \"**/*.{js,ts,md}\"",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix"
},
"keywords": [],
"author": "Zurlyy",
"contributors": [
{
"name": "PeanutDumplings"
}
],
"license": "MIT",
"dependencies": {
"@inquirer/input": "^1.2.14",
"chalk": "4.1.2"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}