638969cd01
* yarn first go * fix frontend build cache loader * yarn workspaces built server Docker * build(yarn): add workspaces plugin config * chore(package defs): clean package*.json -s * chore(gitignore): ignore yarn error log * build(yarn): update yarn lock * build(preview-service webpack): add extra resolved path to preview service webpack config because of yarn package hoisting, there are no package level node_modules folder anymore. * build(docker): update dockerignore with yarn specific configs * build(docker): update Dockerfiles for yarn workspaces utilization * ci(circleci): update server test job to yarn * ci(circle): disable cache restore * ci(circleci): trying the node orb yarn-run * ci(circleci): yarn-run again * ci(circleci): disable node orb * ci(circleci): change base node image for tests * ci(circleci): add yarn cache * ci(circleci): remove node install step * ci(circleci): add server specific cache archives * ci(circleci): test build and publish * ci(circleci): change npm auth method to suit yarn * ci(circleci): trying new builder image * ci(circleci): another base image, maybe this works * ci(circleci): force a specific docker engine version * ci(circleci): add yarn version plugin and its changes * ci(circleci): cleanup and remove temp branch config * chore(package defs): moving from npm run to yarn * explicitly specifying webpack4 as a frontend dep * chore(package defs): replace npm with yarn everywhere * docs(root readme): update with some yarn specific docs * chore(root workspace): update dev scripts and package lock * ci(circleci): enable package publish step with yarn Co-authored-by: Fabians <fabis94@live.com>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "@speckle/fileimport-service",
|
|
"private": true,
|
|
"version": "2.5.4",
|
|
"description": "Parse and import files of various types into a stream",
|
|
"author": "Dimitrie Stefanescu <didimitrie@gmail.com>",
|
|
"homepage": "https://github.com/specklesystems/speckle-server#readme",
|
|
"license": "SEE LICENSE IN readme.md",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/specklesystems/speckle-server.git"
|
|
},
|
|
"engines": {
|
|
"node": "^16.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "cross-env S3_BUCKET=speckle-server POSTGRES_URL=postgres://speckle:speckle@localhost/speckle NODE_ENV=development SPECKLE_SERVER_URL=localhost:3000 nodemon ./src/daemon.js",
|
|
"lint": "eslint . --ext .js,.ts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/specklesystems/speckle-server/issues"
|
|
},
|
|
"dependencies": {
|
|
"aws-sdk": "^2.1075.0",
|
|
"bcrypt": "^5.0.1",
|
|
"crypto-random-string": "^3.3.1",
|
|
"knex": "^1.0.3",
|
|
"node-fetch": "^2.6.5",
|
|
"pg": "^8.7.1",
|
|
"prom-client": "^14.0.1",
|
|
"valid-filename": "^3.1.0",
|
|
"web-ifc": "^0.0.33"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"nodemon": "^2.0.13",
|
|
"prettier": "^2.5.1"
|
|
}
|
|
}
|