-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.67 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
{
"name": "interview",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "npm run check && npm run build:js",
"build:js": "babel src --out-dir build --extensions \".ts,.tsx\" --source-maps inline",
"check": "npm run check:eslint && npm run check:prettier && npm run check:types",
"check:eslint": "eslint --ext .js --ext .tsx --ext .ts src",
"check:prettier": "prettier --check 'src/**/*.{js,ts,tsx}'",
"check:types": "tsc",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --ext .js --ext .tsx --ext .ts --fix src ",
"fix:prettier": "prettier --write 'src/**/*.{js,ts,tsx}'",
"test": "jest --watch",
"test:coverage": "jest --coverage --watchAll --testResultsProcessor=./node_modules/jest-html-reporter",
"upgrade": "ncu -i"
},
"jest-html-reporter": {
"pageTitle": "Test Report",
"outputPath": "reports/test-report.html",
"logo": "../src/logo.svg",
"sort": "status",
"includeConsoleLog": true
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"@types/jest": "29.5.10",
"@types/node": "20.10.2",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jest-html-reporter": "3.10.2",
"jest-watch-typeahead": "2.2.2",
"npm-check-updates": "16.14.5",
"prettier": "3.1.1",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
}
}