-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "lynx-cli-app",
"version": "0.0.2",
"private": false,
"type": "module",
"description": "A command line interface for generating project files for Laravel projects using the Repository Pattern.",
"main": "./lib/index.js",
"bin": {
"lynx": "./lib/index.js"
},
"scripts": {
"build": "tsc -p .",
"create": "npm run build && npm run test",
"local": "npm run build && sudo npm uninstall --location=global && sudo npm install --location=global && lynx",
"npm:upgrade": "npx npm-check-updates -iu",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node --esm' src/index.ts",
"test": "npm run build && sudo npm i --location=global && lynx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RalphMarvin/lynx.git"
},
"keywords": [
"CLI",
"Command line",
"Command line tool"
],
"author": "Ralph Marvin Addo",
"license": "ISC",
"bugs": {
"url": "https://github.com/RalphMarvin/lynx/issues"
},
"homepage": "https://github.com/RalphMarvin/lynx#readme",
"dependencies": {
"boxen": "^7.0.2",
"chalk": "^5.2.0",
"clear": "^0.1.0",
"commander": "^10.0.0",
"figlet": "^1.5.2",
"fs-extra": "^11.1.1",
"inquirer": "^9.1.5",
"path": "^0.12.7"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}