Select Git revision
package.json
-
Sebastien DUMETZ authoredSebastien DUMETZ authored
This project manages its dependencies using npm.
Learn more
package.json 1.98 KiB
{
"name": "e-thesaurus-server",
"version": "0.0.1",
"description": "eThesaurus application, based on Smithsonian DPO Voyager - 3D Explorer and Tool Suite",
"public": false,
"type": "module",
"scripts": {
"start": "ROOT_DIR=\"$(pwd)/../..\" node ./dist/server/index.js",
"test": "NODE_NO_WARNINGS=1 mocha",
"build": "tsc -b ."
},
"nodemonConfig": {
"delay": 1000
},
"repository": {
"type": "git",
"url": "git+https://github.com/Holusion/ecorpus.git"
},
"contributors": [],
"license": "Apache-2.0",
"homepage": "https://github.com/Holusion/ecorpus",
"engines": {
"node": ">=16.14"
},
"mocha": {
"ui": "bdd",
"recursive": true,
"check-leaks": true,
"extension": [
"js",
"ts"
],
"loader": "ts-node/esm",
"require": [
"./tests-common.ts"
],
"ignore": "./node_modules/**/*",
"spec": "./**/*.test.ts"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-session": "^2.0.0",
"express": "^4.17.1",
"express-rate-limit": "^7.1.2",
"handlebars": "^4.7.8",
"morgan": "^1.10.0",
"nodemailer": "^6.9.7",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.5",
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.14",
"@types/mocha": "^8.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^2.0.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"webpack-dev-middleware": "^6.1.1"
},
"overrides": {
"webpack-dev-middleware": {
"webpack": "^5.88.1"