-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "gw-sim",
"license": "MIT",
"lwc": {
"modules": [
{
"dir": "src/modules"
},
{
"npm": "lwc-base"
},
{
"npm": "lightning-base-components"
}
]
},
"type": "module",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^4.6.0"
},
"devDependencies": {
"@lwc/rollup-plugin": "^2.10.0",
"@lwc/synthetic-shadow": "^2.11.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@salesforce-ux/design-system": "^2.19.0",
"lightning-base-components": "^1.14.6-alpha",
"lwc": "^2.10.0",
"lwc-base": "https://github.com/itsmebasti/lwc-base",
"rollup": "^2.70.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup --config --environment NODE_ENV:production",
"start": "node server.js",
"gcp-build": "yarn build",
"watch": "rollup --config --watch",
"local": "yarn build && yarn start",
"deploy": "gcloud app deploy -v prod --quiet",
"open": "gcloud app browse"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}