generated from filipe1309/shubcogen-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
26 lines (26 loc) · 805 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
{
"name": "algoexpert-ts-solutions",
"version": "1.0.0",
"description": "This repository contains my solutions for the challenges from AlgoExpert",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"test:changed": "jest --verbose --onlyChanged",
"prepare": "git config --local core.hooksPath .githooks || echo 'Can not set git hooks'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}