48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
{
|
|
"name": "server",
|
|
"version": "2.0.0",
|
|
"description": "speckle server",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "PORT=3000 NODE_ENV=development DEBUG=www:server,speckle:* nodemon ./bin/www --watch . --watch ./bin/www -e js,graphql,env",
|
|
"test": "PORT=3001 DEBUG=speckle:test,speckle:errors NODE_ENV=test nyc nyc --reporter=html mocha -s 0 --exit",
|
|
"test-watch": "PORT=3001 DEBUG=speckle:test,speckle:errors NODE_ENV=test mocha --watch -s 0 --exit",
|
|
"test-graph": "PORT=3001 DEBUG=speckle:test,speckle:errors NODE_ENV=test mocha ./modules/core/tests/graph.spec.js --watch -s 0 --exit --no-config",
|
|
"test-objects": "PORT=3001 DEBUG=speckle:test,speckle:errors NODE_ENV=test mocha ./modules/core/tests/objects.spec.js --watch -s 0 --exit --no-config"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"apollo-server-express": "^2.12.0",
|
|
"apollo-server-testing": "^2.12.0",
|
|
"app-root-path": "^3.0.0",
|
|
"auto-load": "^3.0.4",
|
|
"bcrypt": "^4.0.1",
|
|
"body-parser": "^1.19.0",
|
|
"crypto-random-string": "^3.2.0",
|
|
"debug": "^4.1.1",
|
|
"express": "^4.17.1",
|
|
"graphql": "^14.6.0",
|
|
"graphql-scalars": "^1.1.0",
|
|
"graphql-tools": "^4.0.7",
|
|
"knex": "^0.20.12",
|
|
"lodash.merge": "^4.6.2",
|
|
"lodash.values": "^4.3.0",
|
|
"morgan": "^1.10.0",
|
|
"morgan-debug": "^2.0.0",
|
|
"pg": "^7.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"chai-http": "^4.3.0",
|
|
"cz-conventional-changelog": "^3.1.0",
|
|
"mocha": "^7.1.1",
|
|
"nyc": "^15.0.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|