-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "@sbzen/re-cron",
"version": "2.0.7",
"description": "Quartz Cron Component - React",
"author": "Serhii Bzenko <bzenkosergey@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ua-cron/react.git"
},
"keywords": [
"react",
"bootstap",
"cron",
"quartz",
"cron builder",
"cron generator",
"quartz cron"
],
"homepage": "https://recron.emptyui.com",
"sideEffects": false,
"bugs": {
"url": "https://github.com/ua-cron/react/issues"
},
"scripts": {
"copy-rm": "cp README.MD dist/README.MD",
"build": "npm run clean && tsc && node prepare-package.mjs && npm run copy-rm",
"build-alpha": "ALPHA=1 npm run build",
"clean": "rm -rf dist",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test": "jest",
"lint": "eslint . --ext .ts --ext .tsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"e2e-inject": "npm install ./dist --force",
"e2e": "npm run build && npm run e2e-inject && npx cypress open --component",
"e2e-run": "npm run build && npm run e2e-inject && npx cypress run --component",
"publish-alpha": "npm publish ./dist --tag alpha --access=public",
"publish": "npm publish ./dist"
},
"dependencies": {
"@sbzen/cron-core": "2.0.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@cypress/react": "^6.1.0",
"@sbzen/e2e": "https://github.com/ua-cron/e2e/releases/download/20240602212421/dist.tar.gz",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "0.0.13",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.35",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^8.2.5",
"bootstrap": "^4.6.1",
"eslint": "^8.18.0",
"jest": "^28.1.0",
"lodash": "^4.17.21",
"react-scripts": "^5.0.1",
"sass": "^1.53.0",
"storybook-addon-sass-postcss": "^0.1.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "4.6.4"
}
}