2fdcf1bd1d
* feat(shared): unified queue initialization in shared * feat(queues): use the new queue creation everywhere * chore(shared): move to redis module * chore(shared): fix export maps * chore(fileimport): add deps properly * fix(shared): import fix * fix(everything): moear imports * fix(server): cjs imports
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"name": "@speckle/fileimport-service",
|
|
"private": true,
|
|
"version": "2.5.4",
|
|
"description": "Parse and import files of various types into a stream",
|
|
"author": "Speckle Systems <hello@speckle.systems>",
|
|
"homepage": "https://github.com/specklesystems/speckle-server#readme",
|
|
"license": "SEE LICENSE IN readme.md",
|
|
"main": "./bin/www.js",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/specklesystems/speckle-server.git"
|
|
},
|
|
"engines": {
|
|
"node": "^18.19.0"
|
|
},
|
|
"scripts": {
|
|
"build:tsc:watch": "tsc -p ./tsconfig.build.json --watch",
|
|
"run:watch": "NODE_ENV=development LOG_PRETTY=true LOG_LEVEL=debug nodemon --exec \"yarn start\" --trace-deprecation --watch ./bin/www.js --watch ./dist",
|
|
"dev": "concurrently \"npm:build:tsc:watch\" \"npm:run:watch\"",
|
|
"dev:headed": "yarn dev",
|
|
"build:tsc": "rimraf ./dist/src && tsc -p ./tsconfig.build.json",
|
|
"build": "yarn build:tsc",
|
|
"lint": "yarn lint:tsc && yarn lint:eslint",
|
|
"lint:ci": "yarn lint:tsc",
|
|
"lint:tsc": "tsc --noEmit",
|
|
"lint:eslint": "eslint .",
|
|
"start": "node --loader=./dist/src/aliasLoader.js ./bin/www.js",
|
|
"test": "NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true vitest run --sequence.shuffle",
|
|
"downloadBlob": "node scripts/downloadBlob.js"
|
|
},
|
|
"dependencies": {
|
|
"@speckle/shared": "workspace:^",
|
|
"bcrypt": "^5.0.0",
|
|
"bull": "^4.16.5",
|
|
"crypto": "^1.0.1",
|
|
"crypto-random-string": "^3.2.0",
|
|
"dotenv": "^16.4.5",
|
|
"esm-module-alias": "^2.2.0",
|
|
"knex": "^2.5.1",
|
|
"lodash": "^4.17.21",
|
|
"lodash-es": "^4.17.21",
|
|
"pg": "^8.7.3",
|
|
"pino": "^8.7.0",
|
|
"pino-pretty": "^9.1.1",
|
|
"prom-client": "^14.0.1",
|
|
"tarn": "^3.0.2",
|
|
"undici": "^5.28.4",
|
|
"valid-filename": "^3.1.0",
|
|
"web-ifc": "^0.0.36",
|
|
"znv": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"@types/node": "^18.19.38",
|
|
"@vitest/coverage-istanbul": "^1.6.0",
|
|
"concurrently": "^8.2.2",
|
|
"eslint": "^9.4.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-vitest": "^0.5.4",
|
|
"nodemon": "^2.0.20",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^5.0.7",
|
|
"typescript": "^4.6.4",
|
|
"typescript-eslint": "^7.12.0",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|