-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.22 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 5.22 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@meemoo/react-components",
"version": "5.1.20",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./index.js": "./dist/index.js",
"./styles.css": "./dist/react-components.css"
},
"repository": "github:viaacode/react-components",
"homepage": "https://github.com/viaacode/react-components#readme",
"author": "Andry Charlier <andry.charlier@studiohyperdrive.be>",
"contributors": [
"Andry Charlier <andry.charlier@studiohyperdrive.be>",
"Ian Emsens <ian.emsens@studiohyperdrive.be>",
"Bavo Vanderghote <bavo.vanderghote@studiohyperdrive.be>",
"Bert Verhelst <bert.verhelst@studiohyperdrive.be>"
],
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"copy-to-avo-client": "rimraf ../avo2-client/node_modules/@meemoo/react-components/dist ../avo2-client/node_modules/.cache ../avo2-client/node_modules/.vite && cp -r dist package.json ../avo2-client/node_modules/@meemoo/react-components",
"copy-to-hetarchief-client": "rimraf ../hetarchief-client/node_modules/@meemoo/react-components/dist ../hetarchief-client/node_modules/.cache ../hetarchief-client/node_modules/.vite ../hetarchief-client/.next && cp -r dist package.json ../hetarchief-client/node_modules/@meemoo/react-components",
"copy-to-admin-core": "rimraf ../react-admin-core-module/ui/node_modules/@meemoo/react-components/dist ../react-admin-core-module/ui/node_modules/.cache ../react-admin-core-module/ui/node_modules/.vite && cp -r dist package.json ../react-admin-core-module/ui/node_modules/@meemoo/react-components",
"copy": "npm run build && npm run copy-to-avo-client && npm run copy-to-hetarchief-client && npm run copy-to-admin-core",
"copy:avo": "npm run build && npm run copy-to-avo-client && npm run copy-to-admin-core",
"copy:hetarchief": "npm run build && npm run copy-to-hetarchief-client && npm run copy-to-admin-core",
"build:analyze": "npm run build -- --config-analyze",
"build-storybook": "storybook build",
"build-storybook:with-sourcemaps": "cross-env GENERATE_SOURCEMAP=true storybook build",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "biome lint --write src",
"lint:scss": "stylelint 'src/**/*.{css,scss}' --allow-empty-input --fix",
"format": "biome format --write src",
"dev": "storybook dev -p 3020",
"test": "jest --cache",
"test:watch": "npm run test -- --watch",
"test:output": "cross-env CI=true jest --json --outputFile=.storybook/test-results.json",
"type-check": "tsc --noEmit",
"licenses": "license-checker --csv --out licenses.csv",
"snyk-protect": "snyk protect",
"prepare": "husky install",
"bump": "bump-package-versions --part=patch --strategy=highest ./package.json"
},
"peerDependencies": {
"@emotion/react": "11.11.1",
"@floating-ui/react": "0.27.18",
"@flowplayer/player": "3.32.1",
"@popperjs/core": "2.11.6",
"@viaa/avo2-types": "5.0.10",
"autosize": "6.0.1",
"braft-editor": "^2.3.9",
"braft-extensions": "0.1.1",
"clsx": "2.0.0",
"date-fns": "3.6.0",
"draft-js": "0.10.5",
"js-beautify": "1.15.4",
"react": "18.3.1",
"react-colorful": "5.6.1",
"react-dom": "18.3.1",
"react-modal": "3.14.4",
"react-perfect-scrollbar": "1.5.8",
"react-popper": "2.3.0",
"react-range": "1.8.14",
"react-select": "5.10.2",
"react-table": "7.7.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@storybook/react-vite": "10.0.6",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.6.1",
"@types/autosize": "4.0.1",
"@types/jest": "29.5.5",
"@types/js-beautify": "1.14.3",
"@types/node": "22.15.29",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-modal": "3.13.1",
"@types/react-table": "7.7.9",
"@vitejs/plugin-react": "5.1.0",
"autoprefixer": "10.4.15",
"bump-package-versions": "^1.0.7",
"cross-env": "7.0.3",
"husky": "^8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lefthook": "1.11.13",
"license-checker": "25.0.1",
"lint-staged": "^13.0.3",
"lorem-ipsum": "2.0.4",
"postcss": "8.5.6",
"react-select-event": "5.3.0",
"rimraf": "3.0.2",
"sass": "1.93.3",
"snyk": "^1.1300.2",
"storybook": "10.1.10",
"stylelint": "16.25.0",
"stylelint-config-standard-scss": "16.0.0",
"ts-jest": "29.1.1",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "7.2.2",
"vite-plugin-dts": "4.5.4",
"vite-plugin-svgr": "4.5.0"
},
"publishConfig": {
"@viaa:registry": "http://do-prd-mvn-01.do.viaa.be:8081/repository/npm-viaa/"
},
"snyk": true,
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}