-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.75 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
62
63
64
65
{
"name": "@open-wc/form-participation-root",
"version": "1.0.0",
"private": true,
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "nx run-many --target build",
"changeset": "changeset",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"test": "nx run-many --target test --parallel 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-wc/form-participation.git"
},
"author": "Caleb D. Williams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-wc/form-participation/issues"
},
"homepage": "https://github.com/open-wc/form-participation#readme",
"devDependencies": {
"@changesets/cli": "^2.18.1",
"@nx/devkit": "^16.9.1",
"@nx/workspace": "^16.9.1",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/testing": "^3.0.3",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@web/dev-server": "^0.1.28",
"@web/dev-server-esbuild": "^0.2.16",
"@web/test-runner": "^0.13.22",
"@web/test-runner-commands": "^0.5.13",
"@web/test-runner-playwright": "^0.8.8",
"construct-style-sheets-polyfill": "^3.0.5",
"element-internals-polyfill": "^1.1.19",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"lit": "^2.0.2",
"nx": "^16.9.1",
"prettier": "^2.5.1",
"sinon": "^12.0.1",
"typescript": "^4.5.4"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"source-map": "^0.8.0-beta.0"
}
}