forked from formio/formio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.69 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "formio",
"version": "4.5.0-rc.1",
"description": "The formio server application.",
"license": "OSL-3.0",
"main": "index.js",
"scripts": {
"test": "TEST_SUITE=1 nyc --reporter=lcov --reporter=text --reporter=text-summary mocha test/test.js -b -t 60000 --no-node-snapshot --exit",
"start": "node --no-node-snapshot main.js",
"start:dev": "nodemon --no-node-snapshot main.js",
"lint": "eslint .",
"build:portal": "cd portal && yarn && yarn build && cd ..",
"show-coverage": "open coverage/lcov-report/index.html"
},
"author": "support@form.io",
"engines": {
"node": ">=20.0.0"
},
"schema": "3.1.4",
"templateVersion": "2.0.0",
"dependencies": {
"@formio/core": "2.4.0-dev.2",
"@formio/js": "5.1.0-dev.5977.69f20ee",
"@formio/node-fetch-http-proxy": "^1.1.0",
"@formio/vm": "1.0.0-dev.45.7e9ae31",
"JSONStream": "^1.3.5",
"adm-zip": "^0.5.9",
"async": "^3.2.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"chance": "^1.1.8",
"clone": "^2.1.2",
"colors": "^1.4.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"csv": "^6.1.3",
"debug": "^4.3.4",
"delete-property": "0.0.4",
"eslint-config-formio": "^1.1.2",
"event-chain": "^0.0.1",
"expose-gc": "^1.0.0",
"express": "^4.21.1",
"fast-json-patch": "^3.1.1",
"fs-extra": "^10.1.0",
"html-entities": "^2.3.3",
"inputmask": "^5.0.8",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"moment": "^2.29.3",
"moment-timezone": "^0.5.34",
"mongodb": "^6.12.0",
"mongoose": "^8.9.5",
"nanoid": "3",
"nodemailer": "^6.8.0",
"progress": "^2.0.3",
"prompt": "^1.3.0",
"q": "^1.5.0",
"resolve": "^1.22.8",
"resourcejs": "2.6.1",
"semver": "^7.3.8",
"superagent-retry": "^0.6.0",
"through": "^2.3.8",
"vanilla-text-mask": "^5.1.1"
},
"devDependencies": {
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"superagent-use": "^0.1.0",
"supertest": "^6.3.0",
"supertest-capture-error": "^1.0.0"
},
"nyc": {
"check-coverage": true,
"statements": 70,
"branches": 61,
"functions": 76,
"lines": 70,
"include": [
"src/**/*.js"
],
"exclude": [
"src/db"
],
"all": true
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/formio.git"
},
"keywords": [
"Form.io",
"nodejs"
],
"bugs": {
"url": "https://github.com/formio/formio/issues"
},
"homepage": "https://github.com/formio/formio#readme",
"pre-commit": [
"lint"
]
}