-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 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
{
"name": "sfmc-jb-custom-activity-example",
"version": "0.0.1",
"main": "app.js",
"author": "Salesforce Marketing Cloud",
"description": "Journey Builder Custom Activities",
"license": "BSD-3-Clause",
"scripts": {
"dev": "concurrently \"npm start\" \"webpack --watch\"",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"heroku-prebuild": "npm install --dev",
"start": "node ./app.js",
"bump": "npm run bump:patch",
"bump:major": "./node_modules/version-bump-prompt/bin/bump.js --major --all --tag",
"bump:minor": "./node_modules/version-bump-prompt/bin/bump.js --minor --all --tag",
"bump:patch": "./node_modules/version-bump-prompt/bin/bump.js --patch --all --tag"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"version-bump-prompt": "^6.0.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@salesforce-ux/design-system": "=2.8.1",
"body-parser": "^1.19.0",
"express": "4.16.3",
"postmonger": "0.0.16",
"serve-static": "^1.12.3"
}
}