-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.37 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
{
"name": "@sillsdev/config-r",
"version": "0.0.3",
"license": "MIT",
"packageManager": "[email protected]",
"keywords": [
"react",
"settings"
],
"repository": {
"type": "git",
"url": "https://github.com/sillsdev/config-r"
},
"scripts": {
"dev": "start http://localhost:5173 && vite",
"// see https://github.com/vitejs/vite/issues/3461, this uses a totally different builder that has its typescript typings act more together than vitejs": "",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode development --minify false --sourcemap true --watch",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"type-check": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@textea/json-viewer": "^2.13.1",
"formik": "^2.2.9",
"formik-mui": "^4.0.0",
"lodash": "^4.17.21",
"mark.js": "^8.11.1",
"react-children-utilities": "^2.8.0"
},
"peerDependencies": {
"@emotion/react": ">= 11.8.2 < 12",
"@emotion/styled": ">= 11.8.1 < 12",
"@mui/icons-material": "5.x",
"@mui/material": ">= 5.5.3 < 6",
"react": ">= 17.0.2 < 18",
"react-dom": ">= 17.0.2 < 18"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/eslint-plugin": "^11.10.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@storybook/addon-actions": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/builder-vite": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-vite": "^8.2.8",
"@types/lodash": "^4.14.178",
"@types/mark.js": "^8.11.7",
"@types/react": "^18.0.28",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-loader": "^8.2.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.8.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"rollup-plugin-copy": "^3.5.0",
"storybook": "8.2.8",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0"
},
"pre-commit": "lint",
"files": [
"dist"
],
"module": "./dist/configr.es.js",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/configr.es.js",
"default": "./dist/configr.es.js"
}
},
"types": "./dist/lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.17.0",
"yarn": "1.22.19"
},
"type": "module"
}