-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1006 Bytes
/
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
{
"scripts": {
"start:bankocr": "ts-node src/katas/bankocr/bankOCR.ts",
"start:birthdays": "ts-node src/katas/birthdaygreetings/birthdayGreetings.ts",
"start:bowling": "ts-node src/katas/bowling/bowling.ts",
"start:booking": "ts-node src/katas/cqrsBooking/cqrsBooking.ts",
"christmas": "ts-node src/katas/christmasDelivery/christmasDelivery.ts",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --watch",
"lint": "tslint --fix --project tslint.json"
},
"devDependencies": {
"@types/jest": "latest",
"@types/node": "latest",
"@types/sqlite3": "latest",
"jest": "latest",
"ts-jest": "latest",
"eslint": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"prettier": "latest",
"typescript": "latest"
},
"dependencies": {
"mocha": "latest",
"sqlite3": "latest",
"ts-node": "latest"
}
}