-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.68 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.68 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "olab45designer",
"version": "24.9.17-0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.56",
"@mui/x-data-grid": "^4.0.2",
"@tinymce/tinymce-react": "^3.14.0",
"axios": "^0.21.2",
"classnames": "^2.3.2",
"connected-react-router": "^6.9.2",
"d3": "^5.9.2",
"dagre": "^0.8.5",
"dompurify": "^3.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"formik": "^2.2.9",
"fs-extra": "^11.2.0",
"fscreen": "^1.2.0",
"history": "^4.10.1",
"kld-affine": "^2.1.1",
"kld-intersections": "^0.7.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.differencewith": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0",
"loglevel": "^1.8.1",
"react": "^16.14.0",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.0.4",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-dom": "^16.14.0",
"react-redux": "^7.0.0",
"react-redux-notify": "^4.2.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux": "^4.2.1",
"redux-saga": "^1.2.3",
"seamless-immutable": "^7.1.4",
"styled-components": "^5.3.10",
"svg-intersections": "^0.4.0",
"tinymce": "^7.0.0"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.1.7",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.18.6",
"@svgr/webpack": "^7.0.0",
"ajv": "^8.12.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-polyfill": "^6.26.0",
"blob": "^0.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^10.1.0",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.1.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^3.0.8",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.8",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.5.4"
},
"overrides": {
"d3-color": "^3.1.0"
},
"scripts": {
"start": "webpack serve --open --mode development",
"start:dev": "webpack serve --mode development",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint ./src",
"test": "jest",
"test-cover": "npm test -- --coverage",
"update:tinymce": "node ./postinstall.js",
"build:azure": "cross-env ENV_FILE=azure webpack --mode production",
"build:azure:dev": "cross-env ENV_FILE=azure.dev webpack --mode development",
"start:azure": "cross-env ENV_FILE=azure webpack serve --open --mode production",
"start:azure:dev": "cross-env ENV_FILE=azure.dev webpack serve --mode development"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"resolver": "jest-pnp-resolver",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"coveragePathIgnorePatterns": [
"(action|reducer|types|styles|config|sagas|serviceWorker).(js|jsx|ts|tsx)$",
"/(store|reducers|services|helpers)/",
"src/index.js"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>/config/jest/jestSetup.js"
}
}