-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.65 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@qoretechnologies/ts-toolkit",
"version": "0.4.13",
"description": "Utility library to interact with Qorus Integration Engine & Qore Language",
"keywords": [
"qoretechnologies",
"qorus-authenticator"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"jest": {
"preset": "ts-jest",
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"testTimeout": 60000
},
"pre-push": [
"lint",
"build:test"
],
"scripts": {
"typedoc": "typedoc",
"test": "./node_modules/.bin/jest --json --outputFile=tests.json",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"build": "npx tsc --p ./tsconfig.prod.json",
"build:test": "npx tsc --p ./tsconfig.prod.json --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"docs": "typedoc && ts-node ./DocGenerator.ts",
"docs:watch": "npm run css & typedoc --watch",
"prepublishOnly": "npm test && npm run lint",
"updatePullRequestVersion": "chmod +x prePush.sh && ./prePush.sh",
"storybook": "yarn docs && storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build",
"chromatic": "npx chromatic --project-token=59cd7005d0f1",
"update-reqore": "yarn add -D @qoretechnologies/reqore@beta",
"precheck": "yarn run lint && yarn run test && yarn build:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qoretechnologies/ts-toolkit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qoretechnologies/ts-toolkit/issues"
},
"homepage": "https://github.com/qoretechnologies/ts-toolkit#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@chromatic-com/storybook": "^1",
"@qoretechnologies/reqore": "^0.48.20",
"@storybook/addon-actions": "^8.2.7",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.2.7",
"@storybook/addon-jest": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-storysource": "^8.2.7",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/react": "^8.2.7",
"@storybook/react-webpack5": "^8.2.7",
"@storybook/test": "^8.2.7",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.11",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.42.1",
"chromatic": "^6.12.0",
"colors": "^1.4.0",
"dotenv": "^16.0.2",
"eslint": "^8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-coverage-badges": "^1.0.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.3",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-runkit": "^0.9.0",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.55.0",
"storybook": "^8.2.7",
"storybook-addon-outline": "^1.4.2",
"storybook-dark-mode": "^1.1.2",
"ts-file-parser": "^0.0.21",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typedoc-json-parser": "^7.0.2",
"typescript": "^4.7.4",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"@qoretechnologies/reqore": "^0.48.0"
},
"dependencies": {
"async": "^3.2.4",
"cron-validator": "^1.3.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"react-markdown": "^8.0.4"
}
}