-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.92 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
52
53
54
55
56
57
{
"name": "phdcc-papers-api",
"version": "1.4.49",
"description": "API for Papers journal/conference abstract and paper submission and review system",
"author": "Chris Cant",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development LOGMODE=console node ./server.js",
"start": "cross-env NODE_ENV=production node ./server.js",
"forclient": "cross-env NODE_ENV=development TESTING=forclient RECAPTCHA_BYPASS=avoidrecaptcha TESTFILESDIR=./testfilesdir TESTTMPDIR=./testtmpdir LOGMODE=console node ./server.js",
"comment": "Must run tests with --runInBand to run sequentially so working directories not overwritten",
"test": "jest --runInBand 2>tests1.txt",
"testci": "jest --runInBand",
"standard": "standard app.js db.js logger.js server.js task.js utils.js models/*.js routes/*.js tests/*.js",
"postinstall": "patch-package"
},
"comments": {
"comment0": "Tests run OK in node 14, 16, 18",
"comment4": "Use [email protected] in node 12",
"create_patch": "npx patch-package sequelize"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phdccltd/phdcc-papers-api.git"
},
"dependencies": {
"archiver": "^7.0.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"cross-env": "7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.18.0",
"handlebars": "^4.7.8",
"http-errors": "2.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"multer": "1.4.5-lts.1",
"mysql2": "^3.0.1",
"needle": "^3.2.0",
"nodemailer": "^6.9.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"rotating-file-stream": "^3.0.4",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"validator": "^13.9.0"
},
"devDependencies": {
"patch-package": "^8.0.0",
"supertest": "^7.0.0"
}
}