-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
{
"private": true,
"name": "ipr-api",
"version": "8.0.0",
"description": "Integrated Pipeline Reports API",
"main": "bin/server.js",
"scripts": {
"start": "node --max-old-space-size=6500 bin/server.js",
"start:prod": "NODE_ENV=production node --max-old-space-size=6500 bin/server.js",
"start:dev": "NODE_ENV=development node --max-old-space-size=6500 bin/server.js",
"test": "NODE_ENV=test NODE_OPTIONS=--max-old-space-size=6500 jest --config config/jest/jest.config.js --log-heap-usage --forceExit",
"test_local": "NODE_ENV=test jest --runInBand --testTimeout=100000 -c --forceExit config/jest/jest.config.js test/",
"jsdoc": "jsdoc -r app -R README.md -d jsdoc --package package.json -c config/jsdoc.config.js"
},
"author": "IPR <ipr@bcgsc.ca>",
"license": "GPL-3.0",
"dependencies": {
"@alt3/sequelize-to-json-schemas": "^0.3.56",
"ajv": "^6.10.2",
"bcryptjs": "~2.4.3",
"bullmq": "^5.1.11",
"compression": "^1.7.4",
"cors": "~2.8.5",
"exceljs": "^4.3.0",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"express-query-boolean": "^2.0.0",
"form-urlencoded": "~4.0.0",
"http-status-codes": "^2.2.0",
"ioredis": "^5.1.0",
"is-svg": "^4.3.2",
"jsonwebtoken": "~8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nconf": "^0.12.0",
"node-gyp": "^9.4.0",
"nodemailer": "^6.9.4",
"path-to-regexp": "^6.2.1",
"pg": "^8.7.3",
"pg-native": "^3.0.1",
"sanitize-html": "^2.7.0",
"sequelize": "^6.21.1",
"sequelize-cli": "^6.4.1",
"sharp": "^0.32.4",
"swagger-ui-express": "^5.0.0",
"uuid": "^8.3.2",
"winston": "^3.8.0"
},
"devDependencies": {
"docdash": "~1.2.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "~6.6.0",
"eslint-plugin-react": "~7.30.1",
"get-port": "^5.0.0",
"jest": "^29.1.1",
"jest-bamboo-formatter": "^1.0.1",
"jest-junit": "^16.0.0",
"jsdoc": "^3.6.10",
"supertest": "^6.3.3"
}
}