-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "try-lit",
"private": true,
"description": "Try lit-html and LitElement now",
"scripts": {
"start": "parcel",
"lint": "eslint . --ext .ts --fix --ignore-pattern node_mobules/",
"format": "prettier --write '**/*.{json,md}'"
},
"dependencies": {
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"parcel": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.2.1",
"prettier": "^1.19.1",
"typescript": "^3.7.3",
"typescript-lit-html-plugin": "^0.9.0"
},
"browserslist": [
"last 1 chrome versions"
],
"staticFiles": {
"staticPath": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer-Japan/try-lit.git"
},
"bugs": {
"url": "https://github.com/Polymer-Japan/try-lit/issues"
},
"homepage": "https://github.com/Polymer-Japan/try-lit#readme"
}