-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2 KB
/
package.json
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
{
"name": "sftp-service",
"version": "0.1.0",
"main": "index.js",
"repository": "git@github.com:PermanentOrg/sftp-service.git",
"scripts": {
"build": "babel --extensions \".ts,.tsx\" src -d build",
"check-types": "tsc",
"eslint": "eslint ./src --ext .ts,.tsx",
"lint": "npm run eslint && npm run check-types",
"start": "npm run build && node -r dotenv/config build/index.js",
"dev": "nodemon --delay 500ms --exec babel-node -r dotenv/config --extensions \".ts,.tsx\" src/index.ts",
"test": "jest"
},
"author": {
"name": "Permanent.org",
"email": "engineers@permanent.org",
"url": "https://www.permanent.org/"
},
"contributors": [
{
"name": "Dan Schultz",
"email": "dan@opentechstrategies.com",
"url": "https://slifty.com"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PermanentOrg/sftp-service/issues"
},
"engines": {
"node": ">=18.0"
},
"private": true,
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@tsconfig/node18": "^18.2.4",
"@types/node-fetch": "^2.6.4",
"@types/ssh2": "^1.15.1",
"@types/tmp": "^0.2.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sort-exports": "^0.9.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"typescript": "^5.6.3"
},
"dependencies": {
"@fusionauth/typescript-client": "^1.53.0",
"@permanentorg/sdk": "0.8.0",
"@sentry/node": "^8.36.0",
"dotenv": "^16.4.5",
"logform": "^2.6.1",
"node-fetch": "^2.7.0",
"require-env-variable": "^4.0.2",
"ssh2": "^1.16.0",
"tmp": "^0.2.3",
"uuid": "^11.0.2",
"winston": "^3.16.0"
}
}