-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "vitamix-forms",
"version": "1.5.1",
"private": true,
"type": "module",
"dependencies": {
"@adobe/aio-lib-state": "^3.0.0",
"@adobe/aio-sdk": "^6",
"@adobe/exc-app": "^1.3.0",
"cloudevents": "^4.0.2",
"fast-xml-parser": "^5.4.2",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.5",
"uuid": "^8.0.0"
},
"devDependencies": {
"@adobe/aio-cli": "11.0.1",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"dotenv": "17.3.1",
"dotenv-cli": "11.0.0",
"eslint": "^8",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29",
"rollup": "4.57.1",
"semantic-release": "^24.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --passWithNoTests ./test",
"build": "rollup -c rollup.config.mjs",
"lint": "eslint --ignore-pattern web-src --no-error-on-unmatched-pattern test src actions",
"lint:fix": "npm run lint -- --fix",
"deploy": "aio app deploy",
"test-postdeploy": "NODE_OPTIONS='--experimental-vm-modules' jest --config '{\"transform\":{},\"testEnvironment\":\"node\",\"testTimeout\":10000}' test/post-deploy.test.js",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run"
},
"engines": {
"node": ">=18"
}
}