-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "webpack4-typescript-lit-element",
"version": "1.0.0",
"description": "A very simple and basic starter boilerplate template based typescript webpack 4 and lit-element",
"main": "index.ts",
"scripts": {
"build": "webpack --mode development",
"watch": "webpack --mode development --watch",
"build:prod": "webpack --mode production",
"watch:prod": "webpack --mode production --watch",
"start:dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Santosh8055/webpack4-typescript-lit-element.git"
},
"keywords": [
"Boilerplate",
"lit-element",
"typescript",
"webpack",
"4"
],
"author": "Santosh Pasupunuri",
"license": "MIT",
"bugs": {
"url": "https://github.com/Santosh8055/webpack4-typescript-lit-element/issues"
},
"homepage": "https://github.com/Santosh8055/webpack4-typescript-lit-element#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"lit-element": "^2.2.1"
}
}