generated from lolastudio/lit-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "lit-starter",
"description": "simple lit-html + lit-element starter without bundler",
"keywords": [
"lit-element",
"lit-html",
"lit-starter"
],
"version": "1.0.0",
"author": "roquef",
"scripts": {
"dev:all": "concurrently --kill-others \"npm run dev\" \"npm run server\"",
"postinstall": "npx snowpack@2 install",
"conjurate": "conjurate component ",
"server": "node proxy.js",
"dev": "es-dev-server --app-index index.html --node-resolve --dedupe --watch --open",
"build": "rimraf dist && rollup -c rollup.config.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"request": "^2.88.2"
},
"devDependencies": {
"@open-wc/building-rollup": "^1.10.0",
"ccapture.js": "^1.1.0",
"concurrently": "^6.0.0",
"conjurate": "^0.6.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.54.0",
"jszip": "^3.7.0",
"rimraf": "^3.0.2",
"rollup": "^2.55.1",
"worker-timers": "^7.0.33"
}
}