-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"devDependencies": {
"eslint": "^7.23.0",
"@open-wc/eslint-config": "^4.2.0",
"prettier": "^2.2.1",
"eslint-config-prettier": "^7.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"@web/test-runner": "^0.12.18",
"@open-wc/testing": "^2.5.32",
"@web/dev-server-storybook": "^0.3.5",
"@open-wc/building-rollup": "^1.9.4",
"deepmerge": "^4.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"@web/dev-server": "^0.1.10"
},
"scripts": {
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"storybook": "web-dev-server -c .storybook/server.mjs",
"storybook:build": "build-storybook",
"build": "rimraf dist && rollup -c rollup.config.js",
"start:build": "npm run build && web-dev-server --root-dir dist --app-index index.html --open --compatibility none",
"start": "web-dev-server"
},
"name": "dc-owc",
"version": "0.0.0",
"description": "Webcomponent dc-owc following open-wc recommendations",
"author": "dc-owc",
"license": "MIT",
"dependencies": {
"crossfilter2": "^1.5.4",
"dc": "^4.2.5",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}