-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
51
52
53
54
55
56
57
{
"name": "search-engine",
"version": "1.0.0",
"description": "A command line application to search different types of data and return the results in a human readable format.",
"main": "index.js",
"scripts": {
"test": "jest src/**",
"dev": "ts-node src/index.ts",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --fix",
"src/**/*.(ts,js)": "npm run prettier-format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"typescript",
"javascript",
"search-engine"
],
"author": "Anish Maharjan",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/jsonfile": "^6.0.0",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"commander": "^7.2.0",
"inquirer": "^8.1.0",
"jsonfile": "^6.1.0"
}
}