forked from EasyDynamics/oscal-react-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.91 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
{
"name": "@easydynamics/oscal-react-library",
"version": "0.5.2-0",
"author": "EasyDynamics",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EasyDynamics/oscal-react-library.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.11.9",
"@mui/lab": "^5.0.0-alpha.120",
"@mui/material": "^5.11.9",
"history": "^5.3.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-markdown": "^8.0.5",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"react-split": "^2.0.14",
"uuid": "^9.0.0",
"web-vitals": "^3.1.1"
},
"scripts": {
"start": "microbundle-crl watch --no-compress --format modern,cjs --jsxFragment React.Fragment",
"build": "microbundle-crl --no-compress --format modern,cjs --jsxFragment React.Fragment",
"prepare": "run-s build",
"test": "react-scripts test",
"predeploy": "cd example && npm ci && npm run build",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.json -c .eslintrc.json .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write src/**/*.js",
"deploy": "gh-pages -d oscal-react-library/build",
"build-library-and-run-example": "npm ci && cd example && npm ci && npm start",
"build-and-run-example": "cd example && npm ci && npm start",
"run-example": "cd example && npm start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"react-scripts": "react-scripts",
"build-all-and-watch": "concurrently \"npm run start\" \"cd example && npm run start\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"webpack": "^5.75.0"
},
"overrides": {
"react-refresh": "0.11.0"
},
"files": [
"dist"
],
"jest": {
"transformIgnorePatterns": [
"(?!(/node_modules/(react-markdown|vfile|vfile-message|unist-.*|unified|bail|is-plain-obj|trough|remark-.*|mdast-util-.*|micromark.*|decode-named-character-reference|character-entities|property-information|hast-util-whitespace|space-separated-tokens|comma-separated-tokens|pretty-bytes|trim-lines)/))(/node_modules/.+.(js|jsx|mjs|cjs|ts|tsx)$)",
"^.+.module.(css|sass|scss)$"
]
}
}