-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
93 lines (93 loc) · 3.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@tmtsoftware/esw-ts",
"version": "0.4.1",
"description": "Typescript client for gateway",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"module": "dist/src/index.js",
"scripts": {
"audit": "npm audit",
"clean": "rm -rf dist && mkdir dist",
"prepare": "tsc",
"prebuild": "npm run clean && npm-run-all --parallel fix",
"build": "tsc",
"build:watch": "tsc -w",
"build:reporter": "tsc --p tsconfig.test.json",
"test": "npm-run-all test:unit test:integration",
"test:unit": "jest unit --reporters=default ",
"test:coverage": "jest --runInBand --reporters=default --coverage",
"test:reporter": "npm run test:coverage -- --reporters=./dist/test/helpers/TestReporter.js --reporters=jest-junit",
"test:ci": "npm-run-all build:reporter test:reporter",
"test:integration": "jest int --runInBand --reporters=default",
"test:integration:reporter": "npm run test:integration -- --reporters=./dist/test/helpers/TestReporter.js --reporters=jest-junit",
"test:integration:ci": "npm-run-all build:reporter test:integration:reporter",
"test:watch": "jest --watchAll",
"fix": "npm-run-all --parallel clean fix:eslint fix:prettier",
"fix:eslint": "eslint --fix --config .eslintrc.js './{integration,src,test}/**/*{.*.,.}{ts,tsx}' --max-warnings 0",
"fix:prettier": "prettier --write --config ./.prettierrc './**/*.{ts,tsx}' ",
"all": "npm-run-all --parallel fix build test ",
"doc": "typedoc --tsconfig ./tsconfig.docs.json"
},
"scripts-info": {
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project"
},
"devDependencies": {
"@jest/reporters": "^27.4.6",
"@jest/test-result": "^27.4.6",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"mock-socket": "^9.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.11",
"typedoc-plugin-external-module-map": "^1.3.2",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.5",
"whatwg-fetch": "^3.6.2"
},
"peerDependencies": {
"react": "^17.0.2"
},
"dependencies": {
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16",
"keycloak-js": "^16.1.1",
"uuid": "^8.3.2"
},
"files": [
"dist/src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tmtsoftware/esw-ts.git"
},
"keywords": [
"typescript",
"gateway"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tmtsoftware/esw-ts/issues"
},
"homepage": "https://github.com/tmtsoftware/esw-ts#readme"
}