-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
{
"name": "euphoria-paste",
"version": "1.0.0",
"private": true,
"description": "Private Pastebin Server",
"engines": {
"node": ">=18"
},
"keywords": [
"paste",
"pastebin"
],
"author": {
"name": "Rep Graphics",
"email": "repgraphics@euphoriadevelopment.uk",
"url": "https://euphoriadevelopment.uk"
},
"main": "haste",
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "3.1000.0",
"@google-cloud/datastore": "^9.2.1",
"busboy": "^1.6.0",
"connect": "^3.7.0",
"connect-ratelimit": "0.0.7",
"connect-route": "0.1.5",
"dotenv": "^16.4.7",
"memcached": "^2.2.2",
"mongodb": "^6.12.0",
"node-fetch": "^3.3.2",
"pg": "^8.13.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"redis": "^0.8.1",
"redis-url": "0.1.0",
"rethinkdbdash": "^2.3.31",
"st": "^2.0.0",
"terser": "^5.39.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.9",
"prettier": "^3.5.3"
},
"overrides": {
"fast-xml-parser": "^5.3.8",
"diff": "^8.0.3",
"serialize-javascript": "^7.0.3"
},
"bundledDependencies": [],
"bin": {
"haste-server": "./server.js"
},
"files": [
"server.js",
"lib",
"static"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"dev": "nodemon --watch server.js --watch lib --ext js,json server.js",
"prepare": "husky",
"lint": "eslint server.js lib/document_handler.js lib/document_stores/amazon-s3.js \"test/**/*.js\"",
"format": "prettier --write \"**/*.{js,json,md,css,html,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,json,md,css,html,yml,yaml}\"",
"start": "node server.js",
"test": "mocha --recursive \"test/**/*.test.js\""
},
"lint-staged": {
"*.{js,json,md,css,html,yml,yaml}": [
"prettier --write"
],
"**/!(*.min).js": [
"eslint --fix"
]
},
"bundleDependencies": []
}