-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.23 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
{
"name": "cli-starter",
"version": "0.2.0",
"description": "CLI starter template",
"main": "dist/cli.js",
"repository": "https://github.com/mneco/cli-starter",
"author": "ConstNW <constnw@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc --skipLibCheck",
"start": "node ./dist/cli.js",
"distribute": "yarn build && yarn start",
"develop": "tsc-watch --skipLibCheck --onSuccess \"yarn start\"",
"test": "yarn jest --forceExit --runInBand",
"pretty": "prettier --check ./src",
"lint": "yarn pretty && eslint --ext ts,tsx,json ./src",
"lint:fix": "eslint --fix ./src/**/*.{ts,tsx}"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"axios": "^1.1.3",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"lodash": "^4.17.21",
"mongoose": "~6.6.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@typegoose/typegoose": "^9.12.1",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-no-relative-import-paths": "^1.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-use-decorator": "^0.2.0",
"http-graceful-shutdown": "^3.1.9",
"jest": "^29.3.0",
"module-alias": "^2.2.2",
"mongodb-memory-server": "^8.9.5",
"prettier": "^2.7.1",
"prettier-plugin-pkg": "^0.17.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "yarn@3.1.0"
}