This repository was archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"name": "@dataware-tools/app-common",
"version": "22.8.29",
"description": "Common components for dataware-tools",
"author": "dataware-tools",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dataware-tools/app-common.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14",
"npm": ">=7 < 9"
},
"scripts": {
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" rimraf dist && node bin/esbuild.js && run-s emit-types",
"emit-types": " tsc --emitDeclarationOnly --project tsconfig.json --outDir dist",
"prepare": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" run-s download:catalog build && husky install",
"test": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" run-s lint test:unit test:build test:visual-regression",
"lint": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" run-s lint:eslint lint:tsc",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit --project tsconfig.json",
"test:unit": "jest",
"test:build": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" run-s build",
"test:visual-regression": "build-storybook --quiet && loki --requireReference --reactUri file:./storybook-static",
"format": "prettier --write src/*",
"download:catalog": "./bin/download_catalog.sh",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@auth0/auth0-react": ">=1.4.0 < 2",
"@emotion/react": ">= 11.4.1 < 12",
"@emotion/styled": ">= 11.3.0 < 12",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "^5.0.0-alpha.96",
"@mui/material": "^5.10.3",
"@mui/styles": "^5.10.3",
"oidc-react": "^1.5.1",
"react": ">=16.0.0 < 18",
"react-dom": ">=16.0.0 < 18",
"react-toastify": "^9.0.8"
},
"devDependencies": {
"@auth0/auth0-react": "1.10.2",
"@dataware-tools/dev-tools-for-react": "0.1.0",
"@dataware-tools/dev-tools-for-typescript": "0.1.0",
"@dataware-tools/eslint-config": "0.1.0",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@mui/icons-material": "5.10.3",
"@mui/lab": "5.0.0-alpha.96",
"@mui/material": "5.10.3",
"@mui/styles": "5.10.3",
"@mui/x-data-grid": "5.16.0",
"@types/node": "16.11.68",
"@types/react": "17.0.50",
"@types/react-dom": "18.0.7",
"esbuild": "0.15.6",
"oidc-react": "1.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-toastify": "9.0.8",
"swr": "1.3.0"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"browserslist": [
"last 2 Android versions",
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
"last 2 Electron versions",
"last 2 Firefox versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 Samsung versions"
],
"volta": {
"node": "16.17.1"
}
}