-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "lwc-webpack-plugin",
"version": "0.2.0",
"description": "Webpack Plugin for LWC",
"main": "dist/main.js",
"scripts": {
"build": "tsc && cp -R ./src/defaults ./dist/defaults",
"test": "jest",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidturissini/lwc-webpack-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidturissini/lwc-webpack-plugin/issues"
},
"homepage": "https://github.com/davidturissini/lwc-webpack-plugin#readme",
"devDependencies": {
"@lwc/engine": "^1.3.7",
"@types/node": "^12.12.14",
"@types/webpack": "^4.41.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@babel/preset-typescript": "^7.3.3",
"@lwc/babel-plugin-component": "^1.3.7",
"@lwc/compiler": "^1.3.7",
"@lwc/module-resolver": "^1.3.7",
"babel-loader": "^8.0.6"
}
}