-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "cracking-the-coding-interview",
"version": "1.0.0",
"description": "An attempt to solve all question in Cracking the Coding Interview using JavaScirpt",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:cov": "jest --collect-coverage",
"lint": "eslint --ignore-path .gitignore .",
"build": "rm -rf built/ && tsc"
},
"keywords": [],
"author": "Can Rozanes",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}