-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.49 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
{
"name": "sfmc-lwcactivity",
"description": "Example App using LWC in SFMC",
"version": "0.0.1",
"author": "Douglas Midgley <[email protected]>",
"bugs": "https://github.com/Douglas Midgley/sfmc-lwcactivity/issues",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-redis": "^6.0.0",
"csurf": "^1.11.0",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"google-libphonenumber": "^3.2.22",
"helmet": "^4.6.0",
"ioredis": "^4.27.7",
"jsforce": "^1.10.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"rate-limit-redis": "^2.1.0",
"winston": "^3.3.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@lwc/synthetic-shadow": "^2.3.0",
"@salesforce-ux/design-system": "^2.15.9",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-inclusive-language": "^2.1.1",
"html-webpack-plugin": "^5.3.2",
"lightning-base-components": "^1.13.1-alpha",
"lwc-services": "^3.1.2",
"lwc-webpack-plugin": "^2.0.1",
"npm-run-all": "^4.1.5",
"postmonger": "0.0.16",
"prettier": "^2.3.2",
"webpack": "5.50.0",
"webpack-cli": "^4.8.0"
},
"engines": {
"node": ">=14.15.0",
"npm": ">=6.14.8"
},
"homepage": "https://github.com/Accenture/sfmc-customapp",
"keywords": [
"lwc",
"customactivity",
"sfmc"
],
"license": "Apache-2.0",
"nodemonConfig": {
"watch": [
"src/server/**/*.js"
],
"ext": "js",
"ignore": [
"src/**/*.spec.js",
"src/**/*.test.js"
],
"exec": "node ./src/server/api.js"
},
"repository": "https://github.com/Accenture/sfmc-customapp",
"scripts": {
"build": "webpack --config webpack.config.js",
"build:cert": "cd certificates && buildCert.bat",
"lint": "eslint -c .eslintrc.json",
"watch": "run-p watch:client watch:server",
"watch:client": "webpack --watch --config webpack.config.js --progress",
"watch:server": "nodemon",
"start": "node src/server/api.js",
"prettier": "prettier --write \"**/*.js\""
}
}