-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "lwc-base",
"version": "1.0.0",
"license": "MIT",
"main": "./src/lib/index.js",
"files": [
"src/modules/",
"src/lib/"
],
"lwc": {
"modules": [
{
"dir": "src/modules"
},
{
"npm": "lightning-base-components"
}
],
"expose": [
"base/dateTime",
"base/toast",
"base/tabs",
"base/tab",
"base/timeline",
"base/timelineItem",
"base/toggle",
"base/select",
"github/corner"
]
},
"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-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",
"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 --quiet",
"open": "gcloud app browse"
}
}