-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 822 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 822 Bytes
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
{
"name": "@myorg/myorg-myintegration",
"version": "1.0.0",
"engines": {
"node": "18.13.0",
"npm": "8.x"
},
"main": "index.js",
"scripts": {
"localTestingServer": "node node_modules/@arcxp/arcxp-ifx-node-sdk/localTestingServer",
"prelocalTestingServer": "node node_modules/@arcxp/arcxp-ifx-node-sdk/eventsHandlersModuleGenerator",
"postinstall": "npm run prelocalTestingServer",
"clean": "rimraf dist/",
"build": "npm run clean && cpy src/* .env.sandbox .env.production ./node_modules/ ./dist",
"zip": "(cd dist/ && zip -r ../dist.zip .* -x \"dist.zip\")",
"test": "echo \"No test specified\""
},
"dependencies": {
"@arcxp/arcxp-ifx-node-sdk": "1.2.2",
"@sendgrid/mail": "^7.7.0"
},
"devDependencies": {
"cpy-cli": "^5.0.0",
"rimraf": "^5.0.1"
}
}