-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "tinkofftradingbotconnector",
"author": "pskucherov",
"license": "Apache-2.0",
"version": "0.2.3",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/pskucherov/TinkoffTradingBotConnector.git"
},
"scripts": {
"dev": "node src/main",
"lint-fix": "npx eslint --fix ."
},
"precommit": {
"run": "lint-fix"
},
"engines": {
"node": ">=17.0.0"
},
"dependencies": {
"concurrently": "^7.2.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"node-hmr": "^1.3.1",
"opexviewer": "^0.1.2",
"reactstrap": "^9.0.2",
"tinkoff-sdk-grpc-js": "^0.1.8"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-sonarjs": "^0.13.0",
"pre-commit": "^1.2.2"
}
}