-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.74 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.74 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
{
"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-ses": "^3.1000.0",
"@azure/storage-blob": "^12.31.0",
"@natlibfi/marc-record": "^10.0.1",
"@natlibfi/marc-record-serializers": "^11.0.1",
"archiver": "^7.0.1",
"argon2": "^0.44.0",
"ejs": "^4.0.1",
"express-rate-limit": "^8.2.1",
"jsonwebtoken": "^9.0.3",
"mime-types": "^3.0.2",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"multer": "^2.1.0",
"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.1",
"underscore.date": "^0.6.1",
"underscore.string": "^3.3.6",
"uuid": "^13.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 mocha --exit test/bootstrap.test.js \"test/integration/**/*.test.js\"",
"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.4.2",
"@commitlint/config-conventional": "^20.4.1",
"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.5.3",
"fixted": "^4.2.7",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"mocha": "^11.7.5",
"nodemon": "^3.1.14",
"nyc": "^18.0.0",
"prettier": "^3.8.1",
"should": "^13.2.3",
"sinon": "^21.0.1",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=24"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"overrides": {
"validator": "^13.15.20",
"qs": "^6.14.1",
"diff": "^8.0.3",
"fast-xml-parser": "^5.4.1",
"serialize-javascript": "^7.0.3"
}
}