forked from module-federation/module-federation-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 655 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@comprehensive-demo/app-05",
"version": "1.0.0",
"description": "boilerplate LitElement setup with TypeScript",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "webpack --watch",
"dev": "webpack-dev-server --content-base public",
"serve": "serve public -p 3005",
"clean": "rm -rf dist"
},
"devDependencies": {
"cross-env": "7.0.2",
"lit-element": "2.4.0",
"ts-loader": "5.4.5",
"typescript": "4.0.3",
"html-webpack-plugin": "4.5.0",
"webpack": "5.2.0",
"webpack-cli": "4.0.0",
"webpack-dev-server": "3.11.0",
"serve": "11.3.2"
}
}