-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "search-api",
"private": true,
"version": "0.9.4",
"description": "EPFL Search Engine API",
"repository": "epfl-si/search-api",
"author": "William Belle <[email protected]>",
"homepage": "https://github.com/epfl-si/search-api#readme",
"engines": {
"node": "^16.14.0 || ^18.12.0 || >=20.0.0"
},
"scripts": {
"docs": "jsdoc -c jsdoc.json",
"inspect": "nodemon --inspect src/server.js",
"lint": "eslint src --ext=js",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check --ignore-unknown '**' '!**/*.js' '!**/ansible-deps-cache'",
"prettier:fix": "prettier --write --ignore-unknown '**' '!**/*.js' '!**/ansible-deps-cache'",
"start": "nodemon src/server.js",
"test": "npm run lint && jest --verbose",
"test:coverage": "jest --coverage --verbose",
"test:watch": "jest --watchAll --verbose"
},
"devDependencies": {
"docdash": "^2.0.1",
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-jest": "^28.3.0",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"supertest": "^7.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"googleapis": "^135.0.0",
"helmet": "^7.0.0",
"ldapjs": "^3.0.2",
"memorystore": "^1.6.7",
"morgan": "^1.10.0",
"mysql2": "^3.9.8",
"node-cache": "^5.1.2",
"passport-tequila": "^1.1.0"
}
}