-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
34
35
36
37
{
"name": "test",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"dependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@types/ws": "8.5.4",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"update:id": "check-tests --typescript Jest \"__tests__/*{.,_}{test,spec}.ts\" --update-ids"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-transform-typescript": "7.21.3",
"@testomatio/reporter": "0.7.6",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"check-tests": "0.8.12",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"prettier": "2.8.7"
}
}