-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "codekata-template-typescript",
"version": "2.0.0",
"author": "Sergio Gómez <sergio@uco.es>",
"main": "index.js",
"license": "GPL-3.0",
"devDependencies": {
"@cucumber/cucumber": "^9.1.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort": "^2.10.0",
"expect": "^29.5.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"cucumber": "cucumber-js --require-module tsconfig-paths/register --require-module ts-node/register --require 'step-definitions/**/*.ts'"
}
}