-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.74 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
{
"name": "pwa-conf-app",
"version": "1.0.0",
"description": "This is a PWA tutorial app. You can find the tutorial on the [Vaadin website](https://vaadin.com/progressive-web-applications).",
"main": "sw.js",
"scripts": {
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server --history-api-fallback",
"prod": "npm run webpack -- --env.mode production --env.presets serviceworker",
"dev": "npm run webpack-dev-server -- --env.mode development",
"dev:sw": "npm run webpack-dev-server -- --env.mode development --env.presets serviceworker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaadin-learning-center/lit-element-tutorial-01-starting-a-lit-element-project.git"
},
"keywords": [],
"author": "Marcus Hellberg <marcus@vaadin.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin-learning-center/lit-element-tutorial-01-starting-a-lit-element-project/issues"
},
"homepage": "https://github.com/vaadin-learning-center/lit-element-tutorial-01-starting-a-lit-element-project#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"style-loader": "^0.21.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.3",
"workbox-webpack-plugin": "^3.3.1"
},
"dependencies": {
"lit-element": "^2.0.0",
"@webcomponents/webcomponentsjs": "^2.1.3"
}
}