@laerdal/life-react-components 6.0.0-dev.2 → 6.0.0-dev.2.full

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +141 -137
package/package.json CHANGED
@@ -1,139 +1,143 @@
1
1
  {
2
- "name": "@laerdal/life-react-components",
3
- "version": "6.0.0-dev.2",
4
- "private": false,
5
- "author": "Erik Martirosyan <erik.martirosyan@laerdal.com>",
6
- "contributors": [],
7
- "description": "Laerdal LIFE component library for React.",
8
- "keywords": [],
9
- "license": "UNLICENSED",
10
- "repository": {
11
- "type": "git",
12
- "url": "https://github.com/Laerdal-Medical/dcs-life-react-js"
13
- },
14
- "main": "dist/index.cjs",
15
- "module": "dist/index.js",
16
- "types": "dist/index.d.ts",
17
- "exports": {
18
- ".": {
19
- "require": "./dist/index.cjs",
20
- "import": "./dist/index.js",
21
- "types": "./dist/index.d.ts"
22
- }
23
- },
24
- "sideEffects": false,
25
- "files": [
26
- "dist"
27
- ],
28
- "scripts": {
29
- "bump": "yarn version --patch",
30
- "build": "yarn build:babel:esm && yarn build:babel:cjs && tsc --emitDeclarationOnly --declaration --declarationDir dist && node scripts/copyTS.cjs",
31
- "build:babel:esm": "cross-env BABEL_ENV=esm babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist --out-file-extension .js",
32
- "build:babel:cjs": "cross-env BABEL_ENV=cjs babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist --out-file-extension .cjs",
33
- "clean": "rimraf dist",
34
- "develop": "yarn build:babel:esm --skip-initial-build --watch --verbose",
35
- "test": "jest src/",
36
- "test:coverage": "jest --collectCoverage src/",
37
- "test-watch": "jest --watch",
38
- "storybook": "storybook dev -p 6006",
39
- "build-storybook": "storybook build"
40
- },
41
- "eslintConfig": {
42
- "extends": [
43
- "react-app",
44
- "plugin:storybook/recommended"
45
- ]
46
- },
47
- "browserslist": {
48
- "production": [
49
- ">0.2%",
50
- "not dead",
51
- "not op_mini all"
52
- ],
53
- "development": [
54
- "last 1 chrome version",
55
- "last 1 firefox version",
56
- "last 1 safari version"
57
- ]
58
- },
59
- "omlet": {
60
- "exports": {
61
- ".": "src/index.ts"
62
- }
63
- },
64
- "dependencies": {
65
- "@laerdal/figma-svg": "^5.2.2",
66
- "@types/node": "^18.0.6",
67
- "animated-scroll-to": "^2.3.0",
68
- "dayjs": "^1.11.5",
69
- "nanoid": "3.3.11",
70
- "react": "^19.0.0",
71
- "react-datepicker": "^8.2.1",
72
- "react-dom": "^19.0.0",
73
- "react-inlinesvg": "^4.2.0",
74
- "react-modal": "^3.16.0",
75
- "react-quill": "^2.0.0",
76
- "react-resize-detector": "^11.0.1",
77
- "rooks": "^7.1.1",
78
- "styled-components": "^6.1.13",
79
- "typescript": "^5.1.2"
80
- },
81
- "devDependencies": {
82
- "@babel/cli": "^7.22.0",
83
- "@babel/plugin-proposal-class-properties": "^7.18.6",
84
- "@babel/plugin-proposal-export-default-from": "^7.22.0",
85
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
86
- "@babel/plugin-proposal-object-rest-spread": "^7.18.6",
87
- "@babel/plugin-transform-runtime": "^7.22.0",
88
- "@babel/preset-env": "^7.22.0",
89
- "@babel/preset-react": "^7.22.0",
90
- "@babel/preset-typescript": "^7.27.0",
91
- "@babel/runtime": "^7.22.0",
92
- "@chromatic-com/storybook": "1.4.0",
93
- "@laerdal/navigation": "^3.2.0",
94
- "@storybook/addon-essentials": "^8.1.3",
95
- "@storybook/addon-interactions": "^8.1.3",
96
- "@storybook/addon-links": "^8.1.3",
97
- "@storybook/addon-onboarding": "^8.1.3",
98
- "@storybook/addon-webpack5-compiler-swc": "1.0.2",
99
- "@storybook/addons": "^7.6.17",
100
- "@storybook/blocks": "^8.1.3",
101
- "@storybook/react": "^8.1.3",
102
- "@storybook/react-webpack5": "^8.1.3",
103
- "@storybook/test": "^8.1.3",
104
- "@testing-library/dom": "^10.4.0",
105
- "@testing-library/jest-dom": "^6.5.0",
106
- "@testing-library/react": "^16.0.1",
107
- "@testing-library/user-event": "^14.5.2",
108
- "@types/jest": "^29.5.12",
109
- "@types/react": "^19.1.2",
110
- "@types/react-datepicker": "^4.4.2",
111
- "@types/react-dom": "^18.3.0",
112
- "@types/react-modal": "^3.13.1",
113
- "babel-plugin-inline-react-svg": "^2.0.1",
114
- "babel-plugin-typescript-to-proptypes": "^2.0.0",
115
- "concurrently": "^5.2.0",
116
- "cross-env": "^7.0.3",
117
- "eslint-plugin-storybook": "^0.8.0",
118
- "history": "^5.3.0",
119
- "jest": "^29.7.0",
120
- "jest-environment-jsdom": "^29.7.0",
121
- "jest-styled-components": "^7.2.0",
122
- "jest-svg-transformer": "^1.0.0",
123
- "react-router": "^6.0.0",
124
- "react-share": "^5.1.0",
125
- "regenerator-runtime": "^0.13.9",
126
- "storybook": "^8.1.3",
127
- "ts-jest": "^29.2.5"
128
- },
129
- "peerDependencies": {
130
- "@babel/core": "^7.0.0",
131
- "react": "^19",
132
- "react-dom": "^19"
133
- },
134
- "resolutions": {
135
- "nwsapi": "2.2.9",
136
- "date-fns": "2.24.0",
137
- "@types/react": "19.1.2"
138
- }
2
+ "name": "@laerdal/life-react-components",
3
+ "version": "6.0.0-dev.2.full",
4
+ "private": false,
5
+ "author": "Erik Martirosyan \u003cerik.martirosyan@laerdal.com\u003e",
6
+ "contributors": [
7
+
8
+ ],
9
+ "description": "Laerdal LIFE component library for React.",
10
+ "keywords": [
11
+
12
+ ],
13
+ "license": "UNLICENSED",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/Laerdal-Medical/dcs-life-react-js"
17
+ },
18
+ "main": "dist/index.cjs",
19
+ "module": "dist/index.js",
20
+ "types": "dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "require": "./dist/index.cjs",
24
+ "import": "./dist/index.js",
25
+ "types": "./dist/index.d.ts"
26
+ }
27
+ },
28
+ "sideEffects": false,
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "scripts": {
33
+ "bump": "yarn version --patch",
34
+ "build": "yarn build:babel:esm \u0026\u0026 yarn build:babel:cjs \u0026\u0026 tsc --emitDeclarationOnly --declaration --declarationDir dist \u0026\u0026 node scripts/copyTS.cjs",
35
+ "build:babel:esm": "cross-env BABEL_ENV=esm babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist --out-file-extension .js",
36
+ "build:babel:cjs": "cross-env BABEL_ENV=cjs babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist --out-file-extension .cjs",
37
+ "clean": "rimraf dist",
38
+ "develop": "yarn build:babel:esm --skip-initial-build --watch --verbose",
39
+ "test": "jest src/",
40
+ "test:coverage": "jest --collectCoverage src/",
41
+ "test-watch": "jest --watch",
42
+ "storybook": "storybook dev -p 6006",
43
+ "build-storybook": "storybook build"
44
+ },
45
+ "eslintConfig": {
46
+ "extends": [
47
+ "react-app",
48
+ "plugin:storybook/recommended"
49
+ ]
50
+ },
51
+ "browserslist": {
52
+ "production": [
53
+ "\u003e0.2%",
54
+ "not dead",
55
+ "not op_mini all"
56
+ ],
57
+ "development": [
58
+ "last 1 chrome version",
59
+ "last 1 firefox version",
60
+ "last 1 safari version"
61
+ ]
62
+ },
63
+ "omlet": {
64
+ "exports": {
65
+ ".": "src/index.ts"
66
+ }
67
+ },
68
+ "dependencies": {
69
+ "@laerdal/figma-svg": "^5.2.2",
70
+ "@types/node": "^18.0.6",
71
+ "animated-scroll-to": "^2.3.0",
72
+ "dayjs": "^1.11.5",
73
+ "nanoid": "3.3.11",
74
+ "react": "^19.0.0",
75
+ "react-datepicker": "^8.2.1",
76
+ "react-dom": "^19.0.0",
77
+ "react-inlinesvg": "^4.2.0",
78
+ "react-modal": "^3.16.0",
79
+ "react-quill": "^2.0.0",
80
+ "react-resize-detector": "^11.0.1",
81
+ "rooks": "^7.1.1",
82
+ "styled-components": "^6.1.13",
83
+ "typescript": "^5.1.2"
84
+ },
85
+ "devDependencies": {
86
+ "@babel/cli": "^7.22.0",
87
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
88
+ "@babel/plugin-proposal-export-default-from": "^7.22.0",
89
+ "@babel/plugin-proposal-numeric-separator": "^7.18.6",
90
+ "@babel/plugin-proposal-object-rest-spread": "^7.18.6",
91
+ "@babel/plugin-transform-runtime": "^7.22.0",
92
+ "@babel/preset-env": "^7.22.0",
93
+ "@babel/preset-react": "^7.22.0",
94
+ "@babel/preset-typescript": "^7.27.0",
95
+ "@babel/runtime": "^7.22.0",
96
+ "@chromatic-com/storybook": "1.4.0",
97
+ "@laerdal/navigation": "^3.2.0",
98
+ "@storybook/addon-essentials": "^8.1.3",
99
+ "@storybook/addon-interactions": "^8.1.3",
100
+ "@storybook/addon-links": "^8.1.3",
101
+ "@storybook/addon-onboarding": "^8.1.3",
102
+ "@storybook/addon-webpack5-compiler-swc": "1.0.2",
103
+ "@storybook/addons": "^7.6.17",
104
+ "@storybook/blocks": "^8.1.3",
105
+ "@storybook/react": "^8.1.3",
106
+ "@storybook/react-webpack5": "^8.1.3",
107
+ "@storybook/test": "^8.1.3",
108
+ "@testing-library/dom": "^10.4.0",
109
+ "@testing-library/jest-dom": "^6.5.0",
110
+ "@testing-library/react": "^16.0.1",
111
+ "@testing-library/user-event": "^14.5.2",
112
+ "@types/jest": "^29.5.12",
113
+ "@types/react": "^19.1.2",
114
+ "@types/react-datepicker": "^4.4.2",
115
+ "@types/react-dom": "^18.3.0",
116
+ "@types/react-modal": "^3.13.1",
117
+ "babel-plugin-inline-react-svg": "^2.0.1",
118
+ "babel-plugin-typescript-to-proptypes": "^2.0.0",
119
+ "concurrently": "^5.2.0",
120
+ "cross-env": "^7.0.3",
121
+ "eslint-plugin-storybook": "^0.8.0",
122
+ "history": "^5.3.0",
123
+ "jest": "^29.7.0",
124
+ "jest-environment-jsdom": "^29.7.0",
125
+ "jest-styled-components": "^7.2.0",
126
+ "jest-svg-transformer": "^1.0.0",
127
+ "react-router": "^6.0.0",
128
+ "react-share": "^5.1.0",
129
+ "regenerator-runtime": "^0.13.9",
130
+ "storybook": "^8.1.3",
131
+ "ts-jest": "^29.2.5"
132
+ },
133
+ "peerDependencies": {
134
+ "@babel/core": "^7.0.0",
135
+ "react": "^19",
136
+ "react-dom": "^19"
137
+ },
138
+ "resolutions": {
139
+ "nwsapi": "2.2.9",
140
+ "date-fns": "2.24.0",
141
+ "@types/react": "19.1.2"
142
+ }
139
143
  }