-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dcanod",
"version": "2.0.0",
"description": "",
"author": "Louis Aussedat",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib/* && tsc -p . && tsc-alias",
"prettier": "prettier --check 'src/**/*.ts'",
"prettier:write": "prettier --write 'src/**/*.ts'",
"lint": "npx eslint src/*",
"lint-staged": "lint-staged",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/aussedatlo/dcanod"
},
"engines": {
"node": ">=10"
},
"keywords": [
"cli",
"node",
"typescript"
],
"bugs": {
"url": "https://github.com/aussedatlo/dcanod/issues"
},
"homepage": "https://github.com/aussedatlo/dcanod#readme",
"bin": {
"dcanod-cli": "lib/src/index.js"
},
"dependencies": {
"axios": "^1.5.1",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"figlet": "^1.5.0",
"ghostfolio-api": "^1.0.5",
"inversify": "^6.0.1",
"inversify-logger-middleware": "^3.1.0",
"nexo-pro": "^1.2.2",
"prompts": "^2.4.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/jest": "^29.5.3",
"@types/node": "^14.14.21",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^14.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
}
}