-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.38 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
{
"name": "formio-workers",
"version": "1.20.0-rc.4",
"description": "A Nunjucks rendering template service for Form.io forms.",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js -b -t 60000 --exit",
"lint": "eslint .",
"deploy": "claudia create --name formio-workers --handler lambda.handler --deploy-proxy-api --region us-west-2",
"update": "VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]' | sed 's/[\\.]/-/g');claudia update --version \"v${VERSION}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/formio-workers.git"
},
"author": "Travis Tidwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/formio-workers/issues"
},
"homepage": "https://github.com/formio/formio-workers#readme",
"dependencies": {
"aws-serverless-express": "^3.4.0",
"body-parser": "^1.19.1",
"core-js": "^3.19.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"formiojs": "4.18.0-rc.3",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.35",
"nunjucks": "^3.2.3",
"nunjucks-date-filter": "^0.1.1",
"vm2": "^3.9.5"
},
"devDependencies": {
"claudia": "^5.14.0",
"eslint": "^8.4.1",
"eslint-config-formio": "^1.1.4",
"mocha": "^9.1.3"
}
}