-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "web-components-boilerplate",
"version": "0.0.1",
"description": "Web Components Boilerplate - start building native web components in an organized way.",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.config.js --hot",
"build": "webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "Patric Gutersohn",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.0.0-beta.6",
"mini-css-extract-plugin": "^1.3.4",
"node-sass": "^6.0.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.1.4",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.3.0",
"core-js": "^3.14.0",
"handlebars": "^4.7.7",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5"
}
}