-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
164 lines (164 loc) · 5.35 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
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
155
156
157
158
159
160
161
162
163
164
{
"name": "boomerang.app.flow",
"version": "3.12.0",
"private": true,
"homepage": "https://useboomerang.io",
"sideEffects": false,
"scripts": {
"analyze": "source-map-explorer build/assets/*.js",
"build": "run-s build:vite build:move",
"build:vite": "vite build",
"build:move": "ncp build server/build",
"cypress": "cypress open --e2e",
"cypress:run": "$(npm bin)/cypress run --e2e --config video=false",
"docker": "run-s build docker:build docker:run",
"docker:build": "docker build -t webapp .",
"docker:run": "docker run -i -t -p 3000:3000 -e APP_ROOT=/app -e BASE_SERVICE_ENV_URL=http://localhost:8000 webapp",
"lint": "eslint -f json -o lint-report.json ./src",
"lint:staged": "eslint ./src",
"prod": "run-s build prod:rewriteAssetPaths prod:server",
"prod:rewriteAssetPaths": "cross-env APP_ROOT=/local node server/scripts/rewriteAssetPaths.js",
"prod:server": "cd server && pnpm dev",
"start": "vite",
"start:pf": "vite --mode portforward",
"start:test": "vite --mode test",
"test": "cross-env TZ=UTC vitest",
"test:ui": "cross-env TZ=UTC vitest --ui",
"test:ci": "cross-env TZ=UTC vitest --coverage",
"test:ci-cypress": "start-server-and-test start:test http://127.0.0.1:3000 cypress:run",
"test:staged": "cross-env TZ=UTC CI=true vitest related --changed --passWithNoTests",
"upgradePackage": "node scripts/upgradePackage",
"preview": "vite preview",
"prepare": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"@boomerang-io/carbon-addons-boomerang-react": "4.0.2",
"@boomerang-io/styles": "1.1.0",
"@boomerang-io/utils": "1.1.0",
"@carbon/charts": "^1.6.1",
"@carbon/charts-react": "^1.6.1",
"@carbon/react": "1.16.0",
"@projectstorm/react-diagrams": "^5.3.2",
"axios": "^0.27.2",
"axios-hooks": "^3.0.1",
"classnames": "^2.3.2",
"closest": "0.0.1",
"codemirror": "^5.58.2",
"copy-to-clipboard": "^3.3.1",
"cronstrue": "^2.21.0",
"d3": "^7.4.4",
"deep-object-diff": "^1.1.7",
"detect-browser": "^5.3.0",
"flagged": "^2.0.1",
"formik": "^2.2.9",
"immer": "^9.0.6",
"js-file-download": "^0.4.12",
"match-sorter": "^6.3.1",
"moment-timezone": "^0.5.40",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.10",
"postcss-flexbugs-fixes": "^5.0.2",
"prop-types": "15.8.1",
"query-string": "^6.14.1",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
"react-big-calendar": "^1.5.2",
"react-codemirror2": "^7.2.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.14.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^2.3.1",
"react-helmet": "^6.1.0",
"react-json-view": "^1.21.1",
"react-lazylog": "4.5.2",
"react-markdown": "^8.0.3",
"react-mde": "11.5.0",
"react-query": "^3.34.12",
"react-router-dom": "5.3.0",
"react-sliding-pane": "^7.1.0",
"react-transition-group": "^4.4.2",
"reflexbox": "^4.0.6",
"use-immer": "^0.8.1",
"validator": "^13.7.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.22",
"@types/react": "^16.9.43",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-big-calendar": "^0.38.3",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/reflexbox": "^4.0.1",
"@types/validator": "^13.1.0",
"@types/yup": "^0.29.3",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/ui": "^0.27.2",
"autoprefixer": "^10.4.13",
"c8": "^7.11.3",
"cross-env": "7.0.2",
"cypress": "^12.3.0",
"cypress-vite": "1.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.17.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-testing-library": "5.0.1",
"husky": "^8.0.0",
"jsdom": "^20.0.0",
"lint-staged": "10.1.1",
"miragejs": "^0.1.45",
"ncp": "^2.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"react-test-renderer": "^16.13.1",
"sass-embedded": "^1.54.0",
"source-map-explorer": "^2.5.2",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^3.4.0",
"uuid": "^8.3.2",
"vite": "^4.0.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^0.27.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,scss,css,md}": [
"prettier --print-width 120 --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"pnpm lint:staged",
"pnpm test:staged"
]
},
"pnpm": {
"patchedDependencies": {
"@carbon/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}