-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "elixir-cloud-components",
"version": "0.1.1",
"description": "Elixir Cloud Components is lightweight, fast, and reusable web-components developed by Elixir Cloud and AAI Community for managing and accessing various services.",
"repository": {
"type": "git",
"url": "git+https://github.com/elixir-cloud-aai/cloud-components.git"
},
"prettier": {
"singleQuote": false,
"printWidth": 80,
"tabWidth": 2
},
"bugs": {
"url": "https://github.com/elixir-cloud-aai/cloud-components/issues"
},
"homepage": "https://github.com/elixir-cloud-aai/cloud-components#readme",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev",
"lint": "eslint . && turbo run lint",
"lint:fix": "eslint . --fix && turbo run lint:fix && prettier .",
"new": "turbo gen",
"prepare": "husky install",
"release": "changeset publish",
"test": "turbo run test --parallel",
"test:watch": "turbo run test --watch"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@custom-elements-manifest/analyzer": "^0.9.0",
"@elixir-cloud/eslint-config": "*",
"@lit/react": "^1.0.2",
"@open-wc/eslint-config": "^12.0.3",
"@open-wc/testing": "^4.0.0",
"@turbo/gen": "^1.9.8",
"@web/dev-server": "^0.4.1",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner-playwright": "^0.11.0",
"commander": "^12.0.0",
"concurrently": "^8.2.2",
"eslint": "^7.32.0",
"fast-glob": "^3.3.2",
"globby": "^14.0.1",
"husky": "^8.0.0",
"prettier": "^2.8.8",
"sinon": "^17.0.1",
"tsup": "^8.0.2",
"turbo": "^1.13.0",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
]
}