-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.33 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.33 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
{
"name": "open_sign_server",
"version": "2.35.0",
"description": "opensign server using the parse-server module",
"repository": {
"type": "git",
"url": "https://github.com/OpenSignLabs/OpenSign"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"coverage": "TESTING=true nyc jasmine",
"lint": "eslint --cache ./cloud && eslint --cache index.js && eslint --cache ./spec",
"lint-fix": "eslint --cache --fix ./cloud && eslint --cache --fix index.js && eslint --cache --fix ./spec",
"prettier": "prettier --write '{cloud,spec}/{**/*,*}.js' 'index.js'",
"start": "node index.js",
"test": "mongodb-runner start && TESTING=true jasmine",
"watch": "nodemon index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.958.0",
"@aws-sdk/s3-request-presigner": "^3.958.0",
"@parse/fs-files-adapter": "^3.0.0",
"@parse/push-adapter": "^8.1.0",
"@parse/s3-files-adapter": "^4.2.0",
"@pdf-lib/fontkit": "^1.1.1",
"@signpdf/placeholder-pdf-lib": "^3.3.0",
"@signpdf/signer-p12": "^3.3.0",
"@signpdf/signpdf": "^3.3.0",
"aws-sdk": "^2.1693.0",
"axios": "^1.13.2",
"coherentpdf": "^2.5.5",
"cors": "^2.8.5",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"form-data": "^4.0.5",
"generate-api-key": "^1.0.2",
"googleapis": "^169.0.0",
"libreoffice-convert": "^1.7.0",
"mailgun.js": "^12.4.1",
"moment": "^2.30.1",
"mongodb": "^7.0.0",
"multer": "^2.0.2",
"multer-s3": "^3.0.1",
"node-forge": "^1.3.3",
"nodemailer": "^7.0.12",
"p-limit": "^7.2.0",
"parse": "^8.0.0",
"parse-dbtool": "^1.2.0",
"parse-server": "^8.6.2",
"parse-server-api-mail-adapter": "^5.0.2",
"pdf-lib": "^1.17.1",
"posthog-node": "^5.19.0",
"qrcode": "^1.5.4",
"rate-limiter-flexible": "^9.0.1",
"sharp": "^0.34.5",
"speakeasy": "^2.0.0",
"ws": "^8.18.3"
},
"type": "module",
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"eslint": "^9.39.2",
"jasmine": "^5.12.0",
"mongodb-runner": "^6.5.2",
"nodemon": "^3.1.11",
"nyc": "^17.1.0",
"prettier": "^3.7.4"
},
"overrides": {
"ws": "$ws",
"parse": "$parse",
"form-data": "$form-data",
"@parse/push-adapter": "$@parse/push-adapter"
},
"engines": {
"node": "18 || 20 || 22"
}
}