-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "ts_group-by-key",
"version": "1.0.0",
"description": "TS group by key task",
"main": "src/sortStudents.ts",
"scripts": {
"init": "mate-scripts init",
"start": "mate-scripts start",
"test:only": "mate-scripts test",
"update": "mate-scripts update",
"postinstall": "npm run update",
"format": "prettier --ignore-path .prettierignore --write './src/**/*.{html,css,scss,ts}'",
"lint": "npm run format && eslint src/*.ts",
"test": "npm run lint && npm run test:only"
},
"author": "Mate academy",
"license": "GPL-3.0",
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@mate-academy/students-ts-config": "latest",
"@mate-academy/eslint-config": "latest",
"@mate-academy/scripts": "^1.8.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"typescript": "^5.4.2"
},
"mateAcademy": {
"projectType": "typescript"
}
}