-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.19 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.19 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "grottocenter-api",
"private": true,
"version": "24.0.0",
"description": "Grottocenter - API",
"author": "Wikicaves",
"license": "CC-BY-SA-3.0",
"keywords": [],
"dependencies": {
"@aws-sdk/client-sesv2": "^3.1041.0",
"@azure/storage-blob": "^12.31.0",
"@natlibfi/marc-record": "^10.0.1",
"@natlibfi/marc-record-serializers": "^11.0.2",
"@rapideditor/country-coder": "^5.6.1",
"archiver": "^7.0.1",
"argon2": "^0.44.0",
"ejs": "^5.0.2",
"express-rate-limit": "^8.4.1",
"i18n-2": "0.7.3",
"jsonwebtoken": "^9.0.3",
"mime-types": "^3.0.2",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"multer": "^2.1.1",
"otplib": "^12.0.1",
"pg-boss": "^12.18.2",
"response-time": "^2.3.4",
"rss-parser": "^3.13.0",
"sails": "^1.5.17",
"sails-hook-orm": "^4.0.3",
"sails-postgresql": "^5.0.1",
"typesense": "^3.0.6",
"underscore.date": "^0.6.1",
"underscore.string": "^3.3.6",
"uuid": "^14.0.0",
"winston": "^3.19.0"
},
"scripts": {
"prepare": "husky",
"start": "node app.js",
"build:info": "node scripts/generate-build-info.js",
"dev": "cross-env NODE_ENV=development nodemon sails lift",
"dev:up": "node scripts/developmentSetup.js up",
"dev:stop": "node scripts/developmentSetup.js stop",
"dev:down": "node scripts/developmentSetup.js down",
"dev:clean": "node scripts/developmentSetup.js clean",
"lint": "cross-env eslint '**/*.js'",
"lint:fix": "cross-env eslint '**/*.js' --fix",
"test": "cross-env NODE_ENV=test node scripts/parallel-test.js",
"test:sequential": "cross-env NODE_ENV=test mocha --exit test/bootstrap.test.js \"test/integration/**/*.test.js\"",
"test:snapshot": "cross-env PORT=1339 node scripts/snapshot-test-db.js --seed",
"test:snapshot:clean": "node scripts/snapshot-test-db.js --clean",
"coverage": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text --reporter=lcov --reporter=json mocha --exit test/bootstrap.test.js \"test/integration/**/*.test.js\"",
"check-coverage": "node scripts/check-coverage.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/GrottoCenter/grottocenter-api.git"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"fast-check": "^4.7.0",
"fixted": "^4.2.7",
"glob": "^13.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.14",
"nyc": "^18.0.0",
"pg": "^8.20.0",
"prettier": "^3.8.3",
"should": "^13.2.3",
"sinon": "^21.1.2",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=24"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5",
"lodash": "^4.18.0",
"skipper": {
"uuid": "^14.0.0"
},
"istanbul-lib-processinfo": {
"uuid": "^14.0.0"
}
}
}