-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@lechaterrant/lantern",
"version": "1.1.2",
"description": "Opinionated CLI to assist backend development",
"publishConfig": {
"access": "public"
},
"bin": {
"lantern": "bin/src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LeChatErrant/lantern.git"
},
"author": {
"name": "LeChatErrant",
"email": "guillaume.hector@epitech.eu",
"url": "https://github.com/LeChatErrant/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/LeChatErrant/lantern/issues"
},
"homepage": "https://github.com/LeChatErrant/lantern#readme",
"scripts": {
"build": "tsc",
"start": "node bin/src",
"dev": "ts-node src",
"install-locally": "npm run build && sudo npm install -g .",
"lint": "eslint './src/**/*.{ts,tsx}' --fix",
"lint:ci": "eslint './src/**/*.{ts,tsx}'",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|js)": [
"eslint --fix"
]
},
"dependencies": {
"clui": "^0.3.6",
"colors": "^1.4.0",
"commander": "^14.0.3",
"download": "^8.0.0",
"figlet": "^1.11.0",
"inquirer": "13.2.1",
"pluralize": "^8.0.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/clui": "^0.3.5",
"@types/download": "^8.0.5",
"@types/figlet": "^1.7.0",
"@types/inquirer": "9.0.9",
"@types/node": "^25.6.0",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-plugin-import": "^2.32.0",
"husky": "^8.0.3",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2"
}
}