-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 4.72 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
{
"name": "mui-chameleon",
"version": "0.3.0",
"description": "MUI Chameleon - Theme editor for MUI.",
"author": "Davit Yavryan <[email protected]>",
"license": "MIT",
"module": "./src/index.ts",
"type": "module",
"private": true,
"sideEffects": false,
"scripts": {
"start": "NODE_ENV=development yarn build:esm --source-maps -w",
"build": "NODE_ENV=production yarn build:esm && yarn build:es && yarn build:cjs && tsc -p ./tsconfig.build.json",
"build:cjs": "TARGET=cjs babel --config-file ./babel.config.js --ignore **/*.unit.ts --ignore **/*.unit.tsx -x '.ts,.tsx' ./src --out-dir ./dist",
"build:esm": "TARGET=esm babel --config-file ./babel.config.js --ignore **/*.unit.ts --ignore **/*.unit.tsx -x '.ts,.tsx' ./src --out-dir ./dist/esm",
"build:es": "TARGET=es babel --config-file ./babel.config.js --ignore **/*.unit.ts --ignore **/*.unit.tsx -x '.ts,.tsx' ./src --out-dir ./dist/es",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "vitest run --coverage",
"test:e2e": "playwright test",
"format": "yarn prettier . --write",
"lint": "eslint --ext .tsx,.ts . && prettier --check .",
"lint:fix": "eslint --ext .tsx,.ts . --fix && prettier --write .",
"docs:start": "vite",
"docs:build": "tsc -p docs/tsconfig.json && vite build",
"docs:deploy": "yarn docs:build && gh-pages -d ./docs/dist",
"prestart": "yarn install --prefer-offline --frozen-lockfile && ts-node-esm ./copy-files.ts",
"prebuild": "yarn install --prefer-offline --frozen-lockfile && rimraf ./dist",
"pretest": "yarn install --prefer-offline --frozen-lockfile",
"prelint": "yarn install --prefer-offline --frozen-lockfile",
"predocs:deploy": "yarn build",
"prepublishOnly": "yarn build",
"postbuild": "ts-node-esm ./copy-files.ts"
},
"dependencies": {
"dlv": "^1.1.3",
"dset": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "<5.11.9",
"@mui/material": "^5.12.1",
"@playwright/test": "^1.31.2",
"@testing-library/dom": "^9.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/dlv": "^1.1.2",
"@types/react": "^18.0.37",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.30.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-react-remove-properties": "^0.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.30.1"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/icons-material": "<5.11.9",
"@mui/material": "^5.0.0",
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-color": "^2.19.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"react",
"react-component",
"material design",
"mui",
"material-ui",
"chameleon",
"mui-chameleon",
"theme editor"
],
"homepage": "https://davityavryan.github.io/mui-chameleon",
"repository": {
"type": "git",
"url": "https://github.com/davityavryan/mui-chameleon.git"
},
"bugs": {
"url": "https://github.com/davityavryan/mui-chameleon/issues"
}
}