-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.4 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
{
"name": "react-miui",
"version": "0.27.7",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest",
"docs": "typedoc src/index.ts --skipErrorChecking --out docs --includeVersion",
"compile": "pnpm run compile:esm && pnpm run compile:cjs",
"compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
"compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
"lint:fix": "pnpm run lint --fix",
"prepare": "patch-package",
"prepack": "pnpm run compile",
"prepublishOnly": "pnpm audit && pnpm run lint && pnpm test && pnpm run docs",
"start:dev": "pnpm run storybook",
"start:dev:legacy": "next dev",
"deploy:dev": "next build && next export && netlify deploy --dir out",
"updates": "pnpm dlx npm-check-updates --dep prod",
"updates:dev": "pnpm dlx npm-check-updates --dep dev",
"updates:all": "pnpm dlx npm-check-updates",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"exports": {
"./global.scss": "./src/global.scss",
".": {
"require": "./dist/index.js",
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
},
"main": "./dist/index.js",
"types": "./esm/index.d.ts",
"module": "./esm/index.js",
"dependencies": {
"@ezez/utils": "^3.0.0",
"@stitches/react": "^1.2.8",
"classnames": "^2.5.1",
"oop-timers": "^5.1.0",
"patch-package": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@dzek69/eslint-config-base": "^2.5.0",
"@dzek69/eslint-config-import": "^1.3.0",
"@dzek69/eslint-config-import-typescript": "^1.0.1",
"@dzek69/eslint-config-react": "^1.3.0",
"@dzek69/eslint-config-typescript": "^1.1.1",
"@ezez/hooks": "^2.2.0",
"@icon-park/react": "^1.4.2",
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/nextjs": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/testing-library": "^0.2.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-module-extension": "^0.1.3",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.6.15",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"must": "^0.13.4",
"next": "^14.2.17",
"nodemon": "^3.1.7",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.1",
"resolve-tspaths": "^0.8.22",
"sass": "^1.80.6",
"storybook": "^8.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.23.28",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"libraryTemplate": {
"version": "3.11.2",
"language": "typescript",
"fixDefaultForCommonJS": true,
"jsx": true
}
}