forked from formio/formio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.3 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "formio",
"version": "1.31.3",
"description": "The formio server application.",
"license": "SEE LICENSE IN LICENSE.txt",
"main": "index.js",
"scripts": {
"test": "npm run version && env TEST_SUITE=1 mocha test/test.js -b -t 60000 --exit",
"start": "npm run version && node main.js",
"start:dev": "nodemon main.js",
"lint": "eslint .",
"version": "check-node-version --node '>=6.0.0'"
},
"author": "[email protected]",
"engines": {
"node": ">=6.0.0"
},
"schema": "3.1.4",
"templateVersion": "2.0.0",
"dependencies": {
"JSONStream": "^1.3.3",
"adm-zip": "^0.4.11",
"async": "^2.6.1",
"bcrypt": "^2.0.0",
"body-parser": "^1.18.3",
"check-node-version": "^3.2.0",
"clone": "^2.1.1",
"colors": "^1.3.0",
"config": "^1.30.0",
"cors": "^2.8.3",
"csv": "^3.1.0",
"debug": "^3.1.0",
"delete-property": "0.0.4",
"eslint-config-formio": "^1.1.2",
"event-chain": "^0.0.1",
"express": "^4.16.3",
"formio-workers": "^1.5.0",
"formiojs": "^2.32.3",
"fs-extra": "^6.0.1",
"html-entities": "^1.2.1",
"joi": "^13.3.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.5",
"memory-cache": "^0.2.0",
"method-override": "^2.3.0",
"moment": "^2.22.2",
"mongodb": "^3.0.8",
"mongoose": "^5.1.7",
"mssql": "^4.1.0",
"mysql": "^2.7.0",
"nodemailer": "^4.6.7",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemailer-mandrill-transport": "^1.2.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"progress": "^2.0.0",
"prompt": "^1.0.0",
"q": "^1.5.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"resourcejs": "^1.24.0",
"restler": "^3.4.0",
"semver": "^5.5.0",
"through": "^2.3.8",
"vanilla-text-mask": "^5.1.1"
},
"devDependencies": {
"chance": "^1.0.11",
"eslint": "^5.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"pre-commit": "^1.2.2",
"supertest": "^3.1.0"
},
"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"
]
}