-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "code-katas",
"version": "1.0.0",
"description": "Code Katas, mostly from codewars",
"main": "index.ts",
"scripts": {
"start": "nodemon --watch",
"build": "tsc",
"test": "jest --watch"
},
"keywords": [
"kata",
"code",
"samples",
"learning"
],
"author": "GeorgeWL",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/node": "^13.1.6",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.7",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.0",
"typescript": "^3.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write \"./*.[tj]s\" --config ./.prettierrc.js",
"eslint --fix --config ./.eslintrc.js",
"git add"
]
}
}