-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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": "kata-ts-base",
"version": "4.0.0",
"description": "Base for Kata with Jest and TS",
"scripts": {
"lint": "eslint --format=pretty ./src --fix",
"prepare": "ts-patch install -s",
"pretty": "prettier --write ./src",
"start": "ts-node src/main.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FredericEspiau/kata-ts-base.git"
},
"author": "Frédéric Espiau <frederic.espiau@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FredericEspiau/kata-ts-base/issues"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/FredericEspiau/kata-ts-base#readme",
"devDependencies": {
"@types/jest": "27.4.0",
"@types/node": "16.11.24",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.5.1",
"jest-ts-auto-mock": "2.0.0",
"prettier": "2.5.1",
"ts-auto-mock": "3.5.0",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"ts-patch": "2.0.1",
"typescript": "4.5.5"
},
"volta": {
"node": "16.14.0",
"npm": "8.5.0"
}
}