-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1015 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1015 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
25
26
27
28
{
"name": "root",
"private": true,
"scripts": {
"start": "webpack-dev-server --open",
"prebuild:all": "rimraf docs",
"build:all": "npm run build:angular && npm run build:stencil && npm run build:vanilla && npm run build:vue && npm run build:lit && npm run build:svelte",
"postbuild:all": "webpack",
"build:angular": "cd packages/ae-img && npm run build:elements",
"build:vue": "cd packages/vwcw-img && npm run build",
"build:stencil": "cd packages/stencil-img && npm run build",
"build:vanilla": "cd packages/vwc-img && npm run build",
"build:svelte": "cd packages/svelte-img && npm run build",
"build:lit": "cd packages/lit-img && npm run build"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "1.1.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.5.2",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"lerna": "^3.4.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}