-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 937 Bytes
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
{
"name": "app",
"version": "0.0.0",
"description": "alogrithms in typescript",
"engines": {
"node": ">16"
},
"scripts": {
"dev": "HTTPS=true NODE_ENV=development ts-node-dev --inspect --respawn -- ",
"build": "rimraf build && tsc -p tsconfig.json",
"prettier:fix": "prettier --write \"**/*.{ts,js,md}\"",
"prettier:check": "prettier --check \"**/*.{ts,js,md}\"",
"prettier": "^2.4.1",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts src/",
"lint:check": "eslint --max-warnings 0 --ext .ts src/"
},
"private": true,
"author": "ivan.proskuryakov",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.1",
"eslint": "^8.30.0",
"prettier": "^2.4.1",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"eslint-config-prettier": "^8.3.0",
"typescript": "^4.7.4"
}
}