-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 864 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
{
"name": "lit-element-sample",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"serve": "webpack-dev-server --content-base ./ --port 3000 --compress --open",
"build:js": "webpack",
"build:ts": "webpack --config webpack.ts.config.js"
},
"author": "okamoai <[email protected]>",
"license": "MIT",
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.3.0",
"core-js": "^3.2.1",
"lit-element": "^2.2.1",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"ts-loader": "^6.1.2",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-bundle-analyzer": "^3.5.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}