-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 814 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 814 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
27
28
29
30
31
32
{
"private": true,
"name": "@lwc/playground",
"version": "8.20.0",
"type": "module",
"description": "Playground project to experiment with LWC.",
"scripts": {
"dev": "rollup -c --watch",
"build": "NODE_ENV=production rollup -c"
},
"devDependencies": {
"@lwc/rollup-plugin": "8.20.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"lwc": "8.20.0",
"rollup": "^4.43.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0"
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/dist"
]
}
}
},
"volta": {
"extends": "../package.json"
}
}