forked from gabbagnale/pdf-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pdf-server",
"private": true,
"version": "3.1.4",
"description": "PDF Server for form.io",
"main": "index.js",
"watch": {
"start": {
"patterns": [
"src",
"node_modules/formio-pdf/dist"
],
"ignore": "src/lib",
"extensions": "js",
"quiet": false
}
},
"pre-commit": [
"lint",
"lib"
],
"scripts": {
"start": "node index.js",
"clean": "rm -rf build",
"compile": "webpack .",
"lib": "gulp build",
"build": "npm run lib && npm run lint && npm run clean && npm run compile",
"watch": "npm-watch",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@formio/core": "0.0.9",
"@formio/node-fetch-http-proxy": "^1.1.0",
"ajv": "^7.2.3",
"async": "^3.2.0",
"aws-sdk": "^2.928.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"chance": "^1.1.7",
"core-js": "^3.14.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"errdrop": "^0.2.0",
"eslint": "^7.28.0",
"eslint-config-formio": "^1.1.4",
"express": "^4.17.1",
"formio-viewer": "^2.51.4",
"fs-extra": "^9.0.1",
"ignore": "^5.1.8",
"jose": "^3.12.3",
"lodash": "^4.17.21",
"minio": "^7.0.18",
"mongodb": "^3.6.9",
"multer": "^1.4.2",
"node-cache": "^5.1.1",
"node-fetch": "^2.6.1",
"puppeteer": "^10.0.0",
"request-promise-native": "^1.0.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@formio/pdf": "github:formio/formio-pdf#v2.1.3",
"@formio/premium": "github:formio/premium#v1.16.3",
"copy-webpack-plugin": "^8.0.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-watch": "^5.0.1",
"javascript-obfuscator": "^2.15.2",
"mocha": "^8.3.2",
"npm-watch": "^0.9.0",
"pre-commit": "^1.2.2",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^2.5.2",
"webpack-obfuscator": "^3.3.2"
}
}