-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "@kagiweb-tech/cli",
"version": "1.0.6",
"description": "Helper for kagiweb-tech projects",
"main": "bin/index.js",
"_bin": "./bin/index.js",
"bin": {
"kwtech": "./bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc -p ./tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"author": {
"name": "Gilbert D. Cuerbo",
"email": "gilbert.cuerbo@gmail.com",
"url": "https://gilbertgit95.github.io/"
},
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^9.25.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@kagiweb-tech/api-core-a": "^1.0.10",
"bcryptjs": "^3.0.2",
"dotenv": "^16.0.3",
"mongoose": "^7.2.0",
"prompts": "^2.4.2"
}
}