-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.27 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
{
"name": "cars-db-cli",
"version": "0.1.4",
"description": "A CLI for a car database holding info on car brands, models, year of manufacturing, price and more",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"add-car": "ts-node index.ts add -e user@example.com -p P4ssword! --brand Citroen --model C4 --year 2020 --price 2600000",
"find-cars": "ts-node index.ts find -e user@example.com -p P4ssword! --brand Nissan -s price -d DESC",
"update-car": "ts-node index.ts update -e user@example.com -p P4ssword! --id 65adb11a62a59cd5a788934d --brand Fiat --model 500 --year 2019 --price 2800000",
"delete-car": "ts-node index.ts delete -e user@example.com -p P4ssword! --id 65ae2b6cc22c079b13d8c285"
},
"keywords": [
"cli",
"nodejs",
"typescript",
"commander"
],
"author": "Georgy Mishurovsky",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"commander": "^11.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}