This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
102 lines (102 loc) · 3.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "flow-core-storybook",
"version": "1.0.0",
"description": "Storybook project for flow-core component development",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"storybook": "storybook dev -p 6007",
"start": "NODE_OPTIONS=--openssl-legacy-provider pnpm run storybook",
"build-storybook": "export NODE_OPTIONS='--max_old_space_size=8192' && storybook build",
"build-packages": "make build",
"lint": "pnpm lint:files .",
"lint:fix": "env TIMING=1 eslint --ext .js,.ts --fix .",
"lint:files": "env TIMING=1 eslint --ext .js,.ts --quiet --cache --cache-location .cache/ --",
"release": "make build-lib && pnpm changeset publish",
"prettify": "prettier --config .prettierrc.cjs --write './**/*.{js,ts,md,mdx,scss,json,mjs,cjs}'",
"prettier:lint": "prettier --config .prettierrc.cjs --check",
"prettier:lint-all": "prettier --config .prettierrc.cjs --check .",
"prepare": "husky install",
"test": "pnpm run loki test",
"postinstall": "tsc -b"
},
"engines": {
"node": "^18.12.0",
"pnpm": ">=8.9.0"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit",
"storybook"
],
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@faker-js/faker": "^8.3.1",
"@ollion/custom-elements-manifest-to-types": "workspace:*",
"@ollion/prettier-config": "^2.1.0",
"@storybook/addon-a11y": "^7.6.12",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-mdx-gfm": "^7.5.3",
"@storybook/addon-storysource": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/web-components": "^7.5.3",
"@storybook/web-components-vite": "^7.5.3",
"@types/d3": "7.4.3",
"@types/eslint": "^8.4.3",
"@types/jest": "29.5.5",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.6.15",
"fs-extra": "^11.1.1",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"lit-html": "^3.1.0",
"loki": "^0.32.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.52.3",
"storybook": "^7.5.3",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"dependencies": {
"@ollion/flow-aws-icon": "latest",
"@ollion/flow-code-editor": "workspace:*",
"@ollion/flow-core": "workspace:*",
"@ollion/flow-dashboard": "workspace:*",
"@ollion/flow-form-builder": "workspace:*",
"@ollion/flow-gcp-icon": "latest",
"@ollion/flow-lineage": "workspace:*",
"@ollion/flow-log": "workspace:*",
"@ollion/flow-md-editor": "workspace:*",
"@ollion/flow-text-editor": "workspace:*",
"@ollion/flow-product-icon": "1.14.0",
"@ollion/flow-system-icon": "latest",
"@ollion/flow-table": "workspace:*",
"d3": "^7.6.1",
"jspdf": "^2.5.1",
"lit": "^3.1.0"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
}
}
}
}