-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.21 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
{
"name": "lit-element-build-rollup",
"version": "1.0.0",
"description": "Build config for lit-element with Babel and Rollup",
"main": "index.js",
"author": "WiseHands Team",
"repository": "WiseHands/userDashBoard",
"scripts": {
"copyindex": "cp src/index.html build",
"copywc": "cp -r node_modules/@webcomponents/webcomponentsjs/bundles build && cp node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js build",
"build": "rm -rf build && mkdir build && npm run copyindex && npm run copywc && rollup -c",
"start": "serve build"
},
"license": "BSD-3-Clause",
"devDependencies": {
"fa-icons": "^0.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-node-resolve": "^4.0.0",
"@webcomponents/webcomponentsjs": "^2.2.4",
"serve": "^10.1.1"
},
"dependencies": {
"fa-icons": "^0.2.0",
"lit-element": "^2.2.1"
},
"extraDependencies": [
"node_modules/@webcomponents/webcomponentsjs/*.js",
"node_modules/fa-icons/fa-icon.js",
"node_modules/@webcomponents/webcomponentsjs/bundles/**"
]
}