-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "cu-personal-utils",
"version": "0.0.1",
"description": "A CLI tool to perform several operations with CU API",
"main": "src/cli/index.ts",
"scripts": {
"cli": "ts-node -r tsconfig-paths/register .",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node -r tsconfig-paths/register' src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"dayjs": "^1.10.1",
"dotenv": "^8.2.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"yargonaut": "^1.1.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.19",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"tsconfig-paths": "^3.9.0"
}
}