ed458fb619
* feat(server): add server authz pipeline rework first sketch * feat(server authz): add new server authz middleware poc implementation * test(server authz): add unittests for the new server authz workflow * feat(wip rework of fileuploads vs blob storage): add basim impl of separate blob storage service * feat(fileimport service): refactored file import service to utilize the new asssetstorage service * refactor(server errors): refactor server errors to use the shared module definitions Now all the errors inherit from BaseError * refactor(fileimport service): cleanup after refactor * feat(frontend fileimports): use the new blob storage for downloading the original file * refactor(server fileimports): clean up the remnants of S3 storage from file imports * refactor(server authz): centralize generic authz pipeline configs * refactor(server blob storage): refactor / rename everything to use the `blob-storage` name * ci(circleci): add s3 objectstorage environment variables * ci(circleci): fix missing env variables * ci(circleci): add minio test container * ci(circleci): fix minio app startup * ci(circleci): enable circleci remote docker * ci(circleci): fix minio startup * ci(cirleci): detach and wait properly for minio to start * ci(circleci): revert to additional minio img config, it only fails when the container is stopped ?! * ci(circleci): disable file uploads * fix(fileimports): update with blob storage refactor leftovers * feat(server blob storage): add blob storage graphql api * refactor(server errors): merge new errors to shared module * fix(server comments rte): fix import for RTE error * chore(fileimports): remove node-fetch from dependency * chore(server): remove body parser dependency * fix(server blob storage): fix gql api * fix(frontend): fix fileupload item not loading the new upload status, cause of premature event fire * feat(server blob storage): fix file size limit and allow for public streams * Update packages/server/modules/blobstorage/graph/schemas/blobstorage.graphql Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com> * chore(blobstorage): fix PR review issues * fix(server): fix import bugs Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
120 lines
3.5 KiB
JSON
120 lines
3.5 KiB
JSON
{
|
|
"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": "^16.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development DEBUG='speckle:*' nodemon ./bin/www --watch . --watch ./bin/www -e js,graphql,env,gql",
|
|
"dev:server:test": "cross-env NODE_ENV=test DEBUG=speckle:* node ./bin/www",
|
|
"test": "cross-env NODE_ENV=test mocha",
|
|
"test:coverage": "cross-env NODE_ENV=test nyc --reporter lcov mocha",
|
|
"test:report": "yarn test:coverage -- --reporter mocha-junit-reporter --reporter-options mochaFile=reports/test-results.xml",
|
|
"lint": "eslint . --ext .js,.ts",
|
|
"cli": "./bin/cli"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.100.0",
|
|
"@aws-sdk/lib-storage": "^3.100.0",
|
|
"@godaddy/terminus": "^4.9.0",
|
|
"@sentry/node": "^6.17.9",
|
|
"@sentry/tracing": "^6.17.9",
|
|
"apollo-server-express": "^2.19.0",
|
|
"apollo-server-testing": "^2.19.0",
|
|
"auto-load": "^3.0.4",
|
|
"bcrypt": "^5.0.0",
|
|
"busboy": "^1.4.0",
|
|
"compression": "^1.7.4",
|
|
"connect-redis": "^6.1.1",
|
|
"cors": "^2.8.5",
|
|
"crypto-random-string": "^3.2.0",
|
|
"dataloader": "^2.0.0",
|
|
"debug": "^4.3.1",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.3",
|
|
"express-async-errors": "^3.1.1",
|
|
"express-session": "^1.17.1",
|
|
"graphql": "^15",
|
|
"graphql-redis-subscriptions": "^2.2.2",
|
|
"graphql-scalars": "^1.6.1",
|
|
"graphql-subscriptions": "^2.0.0",
|
|
"graphql-tag": "^2.11.0",
|
|
"graphql-tools": "^4.0.7",
|
|
"ioredis": "^4.19.4",
|
|
"knex": "^2.0.0",
|
|
"lodash": "^4.17.21",
|
|
"module-alias": "^2.2.2",
|
|
"morgan": "^1.10.0",
|
|
"morgan-debug": "^2.0.0",
|
|
"node-machine-id": "^1.1.12",
|
|
"nodemailer": "^6.5.0",
|
|
"passport": "^0.4.1",
|
|
"passport-azure-ad": "^4.3.0",
|
|
"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",
|
|
"prom-client": "^14.0.1",
|
|
"redis": "^3.1.1",
|
|
"request": "^2.88.2",
|
|
"response-time": "^2.3.2",
|
|
"sanitize-html": "^2.7.0",
|
|
"sharp": "^0.29.3",
|
|
"string-pixel-width": "^1.10.0",
|
|
"subscriptions-transport-ws": "0.9.0",
|
|
"undici": "^5.4.0",
|
|
"verror": "^1.10.1",
|
|
"xml-escape": "^1.1.0",
|
|
"zxcvbn": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^7.1.0",
|
|
"@types/lodash": "^4.14.180",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/module-alias": "^2.0.1",
|
|
"@types/yargs": "^17.0.10",
|
|
"apollo-cache-inmemory": "^1.6.6",
|
|
"apollo-client": "^2.6.10",
|
|
"apollo-link": "^1.2.14",
|
|
"apollo-link-http": "^1.5.17",
|
|
"apollo-link-ws": "^1.0.20",
|
|
"axios": "^0.25.0",
|
|
"chai": "^4.2.0",
|
|
"chai-http": "^4.3.0",
|
|
"concurrently": "^7.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"deep-equal-in-any-order": "^1.1.15",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"http-proxy-middleware": "^1.0.6",
|
|
"mocha": "^7.2.0",
|
|
"mocha-junit-reporter": "^2.0.2",
|
|
"mock-require": "^3.0.3",
|
|
"nodemon": "^2.0.6",
|
|
"nyc": "^15.0.1",
|
|
"prettier": "^2.5.1",
|
|
"supertest": "^4.0.2",
|
|
"ws": "^7.5.7",
|
|
"yargs": "^17.3.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"_moduleAliases": {
|
|
"@": "."
|
|
}
|
|
}
|