-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.32 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@maykin-ui/admin-ui",
"version": "0.0.40",
"description": "",
"scripts": {
"create-component": "./bin/create_component.sh",
"build": "npm run rollup",
"watch": "npm run rollup:watch",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"makemessages": "npm run makemessages-en & npm run makemessages-nl",
"makemessages-en": "npm run extract -- 'src/**/*.ts*' --format src/lib/i18n/format.mjs --ignore='**/*.d.ts' --out-file src/lib/i18n/messages/en.json",
"makemessages-nl": "npm run extract -- 'src/**/*.ts*' --format src/lib/i18n/format.mjs --ignore='**/*.d.ts' --out-file src/lib/i18n/messages/nl.json",
"compilemessages": "formatjs compile-folder --format src/lib/i18n/format.mjs src/lib/i18n/messages src/lib/i18n/compiled",
"extract": "formatjs extract",
"lint": "eslint .",
"lint:fix": "eslint --fix src",
"storybook": "storybook dev -p 6006 --no-open",
"test": "test-storybook",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"chromatic": "npx chromatic",
"commitlint": "commitlint --edit",
"rollup": "rollup -c",
"rollup:watch": "rollup -cw",
"prepare": "husky install"
},
"main": "dist/cjs/index.js",
"module": "src/esm/index.js",
"style": "dist/esm/index.css",
"lang": "dist/esm/lib/i18n/compiled",
"supportedLocales": [
"en",
"nl"
],
"files": [
"dist",
"src"
],
"exports": {
".": "./dist/esm/index.js",
"./components": "./dist/esm/components/index.js",
"./contexts": "./dist/esm/contexts/index.js",
"./hooks": "./dist/esm/hooks/index.js",
"./lib": "./dist/esm/lib/index.js",
"./templates": "./dist/esm/templates/index.js",
"./style": "./dist/esm/index.css"
},
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/maykinmedia/admin-ui.git"
},
"author": {
"name": "Maykin Media"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maykinmedia/admin-ui/issues"
},
"homepage": "https://github.com/maykinmedia/admin-ui/#readme",
"devDependencies": {
"@playwright/test": "^1.49.1",
"@chromatic-com/storybook": "^2.0.2",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@formatjs/cli": "^6.2.7",
"@formatjs/ts-transformer": "^3.13.12",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/addon-themes": "^8.3.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-webpack5": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/test-runner": "^0.19.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.0.0",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"commitlint": "^19.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.9.0",
"formik": "^2.4.5",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss-url": "^10.1.3",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styler": "^1.8.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"storybook": "^8.3.5",
"ts-loader": "^9.5.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"lint-staged": {
"*.{scss}": "npx prettier -w",
"*.{js,jsx,ts,tsx,md}": "npm run lint:fix"
},
"readme": "ERROR: No README data found!",
"dependencies": {
"@floating-ui/react": "^0.26.6",
"@heroicons/react": "^2.1.1",
"clsx": "^2.1.0",
"react-datepicker": "^6.9.0"
}
}