-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
219 lines (219 loc) · 7.97 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
{
"name": "@speckle/server",
"version": "2.5.4",
"private": true,
"description": "",
"homepage": "https://github.com/specklesystems/server",
"author": "AEC Systems",
"license": "SEE LICENSE IN readme.md",
"main": "./bin/www",
"repository": {
"type": "git",
"url": "https://github.com/specklesystems/Server.git"
},
"engines": {
"node": "^18.19.0"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"build:watch": "tsc -p ./tsconfig.build.json -w",
"run:watch": "cross-env NODE_ENV=development LOG_PRETTY=true nodemon --inspect ./bin/www --watch ./dist --watch ./assets --watch ./bin/www --watch .env --watch multiregion.json -e js,ts,graphql,env,gql",
"dev": "concurrently \"npm:build:watch\" \"npm:run:watch\" \"yarn gqlgen:watch\" -n tsc,server,gqlgen",
"build:clean": "rimraf ./dist && yarn build",
"dev:clean": "yarn build:clean && yarn dev",
"dev:server:test": "cross-env DISABLE_NOTIFICATIONS_CONSUMPTION=true NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true node ./bin/ts-www",
"test": "cross-env NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true mocha",
"test:multiregion": "cross-env RUN_TESTS_IN_MULTIREGION_MODE=true FF_WORKSPACES_MODULE_ENABLED=true FF_WORKSPACES_MULTI_REGION_ENABLED=true yarn test",
"test:no-ff": "cross-env DISABLE_ALL_FFS=true yarn test",
"test:coverage": "cross-env NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true nyc --reporter lcov mocha",
"test:report": "yarn test:coverage -- --reporter mocha-junit-reporter --reporter-options mochaFile=reports/test-results.xml",
"lint": "yarn lint:tsc && yarn lint:eslint",
"lint:ci": "yarn lint:tsc",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint .",
"cli": "cross-env LOG_LEVEL=debug LOG_PRETTY=true NODE_ENV=development ts-node ./modules/cli/index.ts",
"cli:test": "cross-env LOG_LEVEL=debug LOG_PRETTY=true NODE_ENV=test ts-node ./modules/cli/index.ts",
"cli:test:multiregion": "cross-env RUN_TESTS_IN_MULTIREGION_MODE=true yarn cli:test",
"cli:download:commit": "cross-env LOG_PRETTY=true LOG_LEVEL=debug yarn cli download commit",
"migrate": "yarn cli db migrate",
"migrate:test": "cross-env NODE_ENV=test ts-node ./modules/cli/index.js db migrate",
"gqlgen": "graphql-codegen --config codegen.yml",
"gqlgen:watch": "graphql-codegen --config codegen.yml --watch \"assets/**/*.graphql\""
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@apollo/server": "^4.11.0",
"@aws-sdk/client-s3": "^3.276.0",
"@aws-sdk/lib-storage": "^3.100.0",
"@godaddy/terminus": "^4.9.0",
"@graphql-tools/mock": "^9.0.4",
"@graphql-tools/schema": "^10.0.6",
"@lifeomic/attempt": "^3.1.0",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.53.0",
"@opentelemetry/instrumentation-express": "^0.42.0",
"@opentelemetry/instrumentation-graphql": "^0.43.0",
"@opentelemetry/instrumentation-http": "^0.53.0",
"@opentelemetry/instrumentation-knex": "^0.40.0",
"@opentelemetry/instrumentation-pino": "^0.42.0",
"@opentelemetry/sdk-trace-node": "^1.26.0",
"@speckle/objectloader": "workspace:^",
"@speckle/shared": "workspace:^",
"ajv": "^8.12.0",
"bcrypt": "^5.0.0",
"bull": "^4.8.5",
"busboy": "^1.4.0",
"compression": "^1.7.4",
"connect-redis": "^6.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"crypto-random-string": "^3.2.0",
"dataloader": "^2.0.0",
"dayjs": "^1.11.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"eventemitter2": "^6.4.7",
"express": "^4.20.0",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^6.6.0",
"express-session": "^1.17.1",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.2.2",
"graphql-scalars": "^1.18.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"ioredis": "^5.2.2",
"jose": "^5.6.3",
"knex": "^2.4.1",
"libsodium-wrappers": "^0.7.13",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"mixpanel": "^0.17.0",
"mjml": "^4.13.0",
"mjml-bullet-list": "^1.2.2",
"module-alias": "^2.2.2",
"netmask": "^2.0.2",
"node-cron": "^3.0.2",
"node-machine-id": "^1.1.12",
"nodemailer": "^6.5.0",
"openid-client": "^5.1.7",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.4",
"passport-github2": "^0.1.12",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.7.3",
"pg-query-stream": "^4.2.3",
"pino": "^8.7.0",
"pino-http": "^8.6.1",
"pino-pretty": "^9.1.1",
"prom-client": "^14.0.1",
"rate-limiter-flexible": "^2.4.1",
"request": "^2.88.2",
"response-time": "^2.3.2",
"sanitize-html": "^2.7.1",
"sharp": "^0.32.6",
"string-pixel-width": "^1.10.0",
"stripe": "^17.1.0",
"subscriptions-transport-ws": "^0.11.0",
"ua-parser-js": "^1.0.38",
"undici": "^5.28.4",
"verror": "^1.10.1",
"xml-escape": "^1.1.0",
"znv": "^0.4.0",
"zod": "^3.22.4",
"zod-express": "^0.0.8",
"zod-validation-error": "^1.5.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@apollo/rover": "^0.23.0",
"@bull-board/express": "^4.2.2",
"@faker-js/faker": "^8.4.1",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typed-document-node": "^5.0.11",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-codegen/typescript-resolvers": "^4.4.0",
"@parcel/watcher": "^2.4.1",
"@swc/core": "^1.2.222",
"@tiptap/core": "^2.0.0-beta.176",
"@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.9",
"@types/busboy": "^1.5.4",
"@types/chai-as-promised": "^7.1.8",
"@types/compression": "^1.7.2",
"@types/connect-redis": "^0.0.23",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.7",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.13",
"@types/ioredis-mock": "^8.2.5",
"@types/libsodium-wrappers": "^0",
"@types/lodash": "^4.14.180",
"@types/mailchimp__mailchimp_marketing": "^3.0.9",
"@types/mjml": "^4.7.0",
"@types/mocha": "^10.0.0",
"@types/mock-require": "^2.0.1",
"@types/module-alias": "^2.0.1",
"@types/netmask": "^2.0.0",
"@types/node-cron": "^3.0.2",
"@types/nodemailer": "^6.4.5",
"@types/passport": "^1.0.16",
"@types/passport-azure-ad": "^4.3.6",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pg": "^8.6.6",
"@types/pino-http": "^5.8.4",
"@types/request": "^2.48.12",
"@types/sanitize-html": "^2.6.2",
"@types/string-pixel-width": "^1.10.3",
"@types/supertest": "^2.0.12",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^9.0.0",
"@types/verror": "^1.10.6",
"@types/xml-escape": "^1.1.3",
"@types/yargs": "^17.0.10",
"@types/zxcvbn": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"axios": "^1.7.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.2",
"chai-http": "^4.3.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"deep-equal-in-any-order": "^1.1.15",
"enforce-unique": "^1.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"http-proxy-middleware": "v3.0.0-beta.0",
"ioredis-mock": "^8.9.0",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.0.2",
"mock-require": "^3.0.3",
"mock-socket": "^9.3.1",
"node-mocks-http": "^1.12.1",
"nodemon": "^2.0.20",
"nyc": "^15.0.1",
"prettier": "^2.5.1",
"rimraf": "^5.0.7",
"supertest": "^4.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"type-fest": "^4.26.1",
"typescript": "^4.6.4",
"typescript-eslint": "^7.12.0",
"ws": "^8.17.1",
"yargs": "^17.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}