-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.59 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
{
"name": "goodreads-service",
"version": "1.0.0",
"description": "Goodreads service for entrello",
"repository": "[email protected]:utkuufuk/goodreads-service.git",
"author": "Utku Ufuk <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p .",
"dev": "ts-node src/main.ts",
"lint": "eslint --config .eslintrc.json --report-unused-disable-directives --ext .ts -- . && prettier --check src/**/*",
"lint:fix": "eslint --config .eslintrc.json --report-unused-disable-directives --ext .ts --fix -- . && prettier --write src/**/*",
"start": "node dist/main.js",
"test": "jest --passWithNoTests"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.26.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"commander": "^9.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fp-ts": "^2.11.10",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"io-ts-types-ext": "^1.1.1",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5"
}
}