-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.35 KB
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
94
95
96
97
{
"name": "@tmtsoftware/esw-ts",
"version": "1.0.2",
"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 audit",
"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 eslint.config.mjs './{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": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@jest/reporters": "^29.7.0",
"@jest/test-result": "^29.7.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"mock-socket": "^9.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.6",
"typedoc-plugin-external-module-map": "^2.1.0",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5.7.3",
"whatwg-fetch": "^3.6.20"
},
"peerDependencies": {
"react": "^19.0.0"
},
"dependencies": {
"fp-ts": "^2.16.9",
"io-ts": "^2.2.22",
"keycloak-js": "^25.0.6",
"uuid": "^11.0.5"
},
"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"
}