-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 985 Bytes
/
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
{
"name": "book-recommendation",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "ts-node index.ts",
"wipeout": "rm .yarnrc.yml && rm yarn.lock && rm .pnp.js && rm -rf .yarn && rm -rf .vscode",
"berry": "yarn set version berry && yarn plugin import typescript && yarn install && yarn dlx @yarnpkg/pnpify --sdk vscode"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "latest",
"@yarnpkg/pnpify": "^2.4.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"got": "^11.8.2",
"terminal-image": "^1.2.1",
"terminal-link": "^2.1.1",
"yargs": "^16.2.0"
}
}