-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.91 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
{
"name": "gamedevmap-cache",
"version": "1.0.0",
"description": "Map cache server for GameDevMap",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "mocha tests/**/*.test.js --timeout 5000",
"test:unit": "mocha tests/unit/**/*.test.js --timeout 5000",
"test:unit:backend": "mocha tests/unit/!(frontend-*).test.js --timeout 5000",
"test:unit:frontend": "mocha tests/unit/frontend-*.test.js --timeout 5000",
"test:integration": "mocha tests/integration/**/*.test.js --timeout 10000",
"test:watch": "mocha tests/**/*.test.js --watch",
"generate:jwt": "node scripts/generate-jwt-secret.js",
"seed:admin": "node server/scripts/create-admin.js",
"migrate:clubs": "node server/scripts/migrate-clubs.js",
"sync:json": "node server/scripts/sync-to-json.js",
"sync:merge": "node server/scripts/sync-to-json.js merge",
"cleanup:logos": "node server/scripts/cleanup-orphaned-logos.js",
"reset:index": "node server/scripts/reset-index-field.js",
"validate:db": "node server/scripts/validate-database.js",
"cache:start": "node server/cache-server.js",
"pre-cache": "node server/pre-cache.js",
"cache:clear": "curl -X DELETE http://localhost:3000/api/cache/clear",
"cache:stats": "curl http://localhost:3000/api/cache/stats"
},
"dependencies": {
"@sendgrid/mail": "^8.1.6",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.3",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"sharp": "^0.34.5"
},
"keywords": [
"map",
"cache",
"amap"
],
"author": "",
"license": "MIT",
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.8.2",
"nodemon": "^3.1.10"
}
}