-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
196 lines (196 loc) · 7.25 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "execution-mode",
"version": "1.0.0",
"description": "Web interface for Bud's execution mode",
"scripts": {
"start": "NODE_ENV=production next start -p 8080",
"start:dev": "TS_NODE_TRANSPILE_ONLY=true npm-run-all -s intl:refresh start:watch",
"start:debug": "NODE_OPTIONS='--inspect' npm run start:dev",
"start:watch": "next dev",
"build": "npm-run-all -s clean compile:intl build:app",
"build:app": "next build",
"compile:intl": "npm-run-all -p intl:compile:ptBR intl:compile:enUS",
"clean": "rimraf -rf .next",
"copy": "cp README.md LICENSE package.json",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint . --ext ts,tsx",
"lint:staged": "lint-staged",
"lint:fix": "npm run lint -- --fix",
"lint:timing": "TIMING=1 eslint . --ext ts,tsx",
"lint:messages": "eslint **/messages.ts --fix",
"lint:types": "tsc --noemit",
"format:and:lint": "npm-run-all -s format lint:fix",
"intl:generate:id": "echo '\u001b[36m➤ \u001b[90mGenerating react-intl message ids...\u001b[39m' && npm run lint:messages",
"intl:refresh": "npm-run-all -s intl:generate:id intl:extract",
"intl:extract": "formatjs extract './src/**/*.ts(x)?' --out-file lang/pt-BR.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"intl:compile:ptBR": "formatjs compile lang/pt-BR.json --ast --out-file compiled-lang/pt-BR.json",
"intl:compile:enUS": "formatjs compile lang/en-US.json --ast --out-file compiled-lang/en-US.json",
"deploy": "run-s git:tag:canary waypoint:build waypoint:deploy",
"release": "run-s git:tag:remove-canary git:tag:stable waypoint:up",
"git:tag:canary": "git tag canary -f && git push origin canary -f",
"git:tag:remove-canary": "git tag -d canary",
"git:tag:stable": "git tag stable -f && git push origin stable -f",
"waypoint:build": "waypoint build -var=\"GITHUB_TOKEN=$GITHUB_TOKEN\" -var=\"SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN\"",
"waypoint:deploy": "waypoint deploy",
"waypoint:up": "waypoint up -var=\"GITHUB_TOKEN=$GITHUB_TOKEN\" -var=\"SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN\"",
"postinstall": "sh bin/install.sh",
"prepare": "husky install",
"fake:task-management": "npx json-server --watch lib/fake-api/db.task-management.json --routes lib/fake-api/routes.json --port 3001"
},
"author": "delucca <delucca@pm.me>",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/budproj/execution-mode.git"
},
"bugs": {
"url": "https://github.com/budproj/execution-mode/issues"
},
"engines": {
"npm": ">=7.3.0",
"node": ">=15.5.1"
},
"devDependencies": {
"@budproj/eslint-config-base-ts": "^1.0.3",
"@budproj/eslint-config-intl": "^1.0.0",
"@budproj/eslint-config-prettier-ts": "^1.0.0",
"@budproj/eslint-config-react": "^1.0.0",
"@budproj/prettier-config": "^1.0.0",
"@formatjs/cli": "^2.15.0",
"@next/eslint-plugin-next": "^12.1.0",
"@tsconfig/recommended": "^1.0.1",
"@types/accepts": "^1.3.5",
"@types/apollo-upload-client": "^17.0.2",
"@types/eslint": "^7.29.0",
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/glob": "^7.2.0",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.180",
"@types/node": "^14.18.12",
"@types/node-fetch": "^2.6.1",
"@types/prettier": "^2.4.4",
"@types/react": "^18.0.27",
"@types/react-beautiful-dnd": "^13.1.3",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.0.10",
"@types/react-linkify": "^1.0.1",
"@types/react-mentions": "^4.1.8",
"@types/react-table": "^7.7.14",
"@types/react-test-renderer": "^17.0.1",
"@types/react-textarea-autosize": "^8.0.0",
"@types/react-window": "^1.8.5",
"@types/recoil": "^0.0.9",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^9.0.11",
"@types/uuid": "^9.0.0",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"browser-env": "^3.3.0",
"buffer": "^6.0.3",
"eslint": "^7.13.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-react-hooks-shallow": "^1.5.1",
"jest-transform-graphql": "^2.1.0",
"json-server": "^0.17.4",
"lint-staged": "^10.5.4",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1"
},
"dependencies": {
"@apollo/client": "^3.7.7",
"@auth0/auth0-react": "^1.9.0",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/bundle-analyzer": "^13.1.1",
"@sentry/nextjs": "^7.119.2",
"@tanstack/react-query": "^5.7.2",
"@tiptap/extension-code-block-lowlight": "^2.1.13",
"@tiptap/extension-color": "^2.1.13",
"@tiptap/extension-gapcursor": "^2.1.13",
"@tiptap/extension-highlight": "^2.1.13",
"@tiptap/extension-list-item": "^2.1.13",
"@tiptap/extension-paragraph": "^2.1.13",
"@tiptap/extension-table": "^2.1.13",
"@tiptap/extension-table-cell": "^2.1.13",
"@tiptap/extension-table-header": "^2.1.13",
"@tiptap/extension-table-row": "^2.1.13",
"@tiptap/extension-task-item": "^2.1.13",
"@tiptap/extension-task-list": "^2.1.13",
"@tiptap/extension-text": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-text-style": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"@amplitude/analytics-browser": "^1",
"apollo-link-sentry": "^3.2.1",
"apollo-upload-client": "^17.0.0",
"axios": "^1.7.4",
"chakra-ui-steps": "^2.0.3",
"chalk": "^5.2.0",
"crypto": "^1.0.1",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"flagsmith": "^3.15.1",
"formik": "^2.2.9",
"framer-motion": "^9.0.2",
"glob": "^7.1.6",
"graphql": "^16.6.0",
"koa": "^2.14.1",
"lodash": "^4.17.21",
"logform": "^2.4.0",
"lowlight": "^3.1.0",
"next": "^13.1.6",
"next-pwa": "^5.6.0",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-canvas-confetti": "^1.4.0",
"react-cookie": "^4.1.1",
"react-csv": "^2.2.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-easy-crop": "^4.6.3",
"react-hotjar": "^2.2.1",
"react-icons": "^4.12.0",
"react-infinite-scroll-component": "^6.1.0",
"react-input-mask": "^2.0.4",
"react-intl": "^5.24.7",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^8.0.5",
"react-mentions": "^4.4.7",
"react-number-format": "^4.9.1",
"react-table": "^7.8.0",
"react-textarea-autosize": "^8.4.0",
"react-window": "^1.8.8",
"recharts": "^2.3.2",
"recoil": "^0.7.6",
"regexify-string": "^1.0.17",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"socket.io-client": "^4.5.1",
"typescript": "^4.9.5",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"yup": "^1.0.0"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}