-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 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
{
"name": "@flowfuse/file-server",
"version": "2.28.1",
"description": "A basic Object Storage backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"serve": "cross-env NODE_ENV=development nodemon -w forge index.js",
"lint": "eslint -c eslint.config.mjs",
"lint:fix": "eslint -c eslint.config.mjs --fix",
"test": "mocha test/unit/**/*_spec.js --timeout 5000",
"test:nopg": "cross-env TEST_POSTGRES=false mocha test/unit/**/*_spec.js --timeout 5000"
},
"bin": {
"ff-file-storage": "./index.js"
},
"keywords": [
"flowfuse",
"object-store"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/file-server.git"
},
"author": {
"name": "FlowFuse Inc."
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FlowFuse/file-server/issues"
},
"homepage": "https://github.com/FlowFuse/file-server#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@fastify/helmet": "^13.0.2",
"@node-red/util": "^3.1.0",
"fastify": "^5.6.2",
"fastify-healthcheck": "^5.1.0",
"fastify-metrics": "^12.1.0",
"fastify-plugin": "^5.1.0",
"got": "^11.8.6",
"pg": "^8.11.2",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"semver": "^7.5.4",
"sequelize": "^6.33.0",
"sqlite3": "^6.0.1",
"yaml": "^2.1.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"cross-env": "^7.0.3",
"eslint": "^9.39.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^16.5.0",
"mocha": "^10.1.0",
"mocha-cli": "^1.0.1",
"neostandard": "^0.12.2",
"nodemon": "^3.0.1",
"should": "^13.2.3"
},
"engines": {
"node": ">=20.x"
}
}