-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 951 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
27
28
29
30
31
32
{
"name": "binance-shorts",
"version": "0.0.1",
"description": "My nice shorts",
"main": "index.js",
"repository": "git@github.com:banciur/binance-shorts.git",
"author": "Banciur <tomek@banciur.org>",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --check '**/*.{ts,tsx,js,json,md,gql}'",
"format:fix": "prettier --write '**/*.{ts,tsx,js,json,md,gql}'",
"eslint": "eslint -c .eslintrc.json src/**",
"nice": "yarn format:fix && yarn eslint"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-typestrict": "^1.0.1",
"eslint-plugin-sonarjs": "^0.8.0-125",
"prettier": "2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"dotenv": "^10.0.0",
"node-fetch": "^2.6.1"
}
}