-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@squadus/core",
"version": "0.0.1",
"description": "Squadus Rest Client, WebSocket Client and common utils, types and constants",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist && yarn tsc",
"lint": "eslint . --cache --cache-location .cache/eslint",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/newcloudtechnologies/squadus-core"
},
"author": "New Cloud Technologies, Ltd.",
"dependencies": {
"axios": "1.3.4",
"form-data": "4.0.0",
"js-sha256": "0.9.0",
"lodash": "4.17.21",
"rxjs": "7.8.0",
"universal-ws-client": "1.0.4"
},
"devDependencies": {
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@types/lodash": "4.14.192",
"@types/jest": "29.5.0",
"@types/rx": "4.1.2",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"axios-mock-adapter": "1.21.4",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-with-typescript": "34.0.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-notice": "0.9.10",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sort-exports": "0.8.0",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"jest": "29.5.0",
"postinstall-postinstall": "2.1.0",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"tslint": "6.1.3",
"typescript": "4.9.5"
},
"engines": {
"node": ">=14.0.0"
}
}