-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "webstandards-starter",
"version": "1.0.0",
"description": "Starter project for web-development using the web's latest standards.",
"main": "src/AppMain.js",
"scripts": {
"postinstall": "rollup -c",
"start": "browser-sync src -f src --single --cors --no-notify --single"
},
"repository": {
"type": "git",
"url": "git+https://github.com/38leinaD/webstandards-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/38leinaD/webstandards-starter/issues"
},
"homepage": "https://github.com/38leinaD/webstandards-starter#readme",
"devDependencies": {
"browser-sync": "^2.27.10",
"@rollup/plugin-node-resolve": "^15.0.0",
"rollup": "^3.2.1"
},
"dependencies": {
"@vaadin/router": "^1.7.4",
"lit-element": "^3.2.2"
},
"rollup": {
"webDependencies": [
"@vaadin/router/dist/vaadin-router.js",
"lit-element/lit-element.js",
"lit-html/directives/async-append.js",
"lit-html/directives/async-replace.js",
"lit-html/directives/cache.js",
"lit-html/directives/class-map.js",
"lit-html/directives/guard.js",
"lit-html/directives/if-defined.js",
"lit-html/directives/repeat.js",
"lit-html/directives/style-map.js",
"lit-html/directives/unsafe-html.js",
"lit-html/directives/until.js"
]
}
}