-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.88 KB
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
{
"type": "module",
"scripts": {
"start": "npm run clean && npm install --loglevel=error && npm run analyze && storybook dev -p 3000",
"dev": "node ./scripts/test.ts",
"watch": "npm-watch",
"test": "node ./scripts/test.ts && karma start --single-run",
"lint": "eslint **/*.ts",
"docs:build": "node ./scripts/docs-build.ts",
"clean": "node ./scripts/clean.ts",
"typescript": "tsgo --build --noEmit",
"release": "node ./scripts/release.ts",
"release:all": "node ./scripts/release-all.ts",
"build": "npm run clean && tsc --build && npm run clean",
"analyze": "node ./scripts/analyze.ts",
"readme": "node ./scripts/readme.ts",
"pre-commit": "node ./scripts/pre-commit.ts"
},
"pre-commit": "pre-commit",
"watch": {
"dev": {
"patterns": [
"packages"
],
"extensions": "ts"
}
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@a11d/eslint-config": "x",
"@a11d/lit": "x",
"@custom-elements-manifest/analyzer": "x",
"@storybook/addon-docs": "10.x",
"@storybook/addon-links": "10.x",
"@storybook/addon-themes": "10.x",
"@storybook/builder-vite": "10.x",
"@storybook/web-components-vite": "10.x",
"@types/jasmine": "x",
"@typescript-eslint/eslint-plugin": "x",
"@typescript-eslint/parser": "x",
"@vueless/storybook-dark-mode": "9.x",
"ajv": "8.x",
"concurrently": "x",
"del-cli": "x",
"esbuild": "0.x",
"eslint": "x",
"eslint-plugin-import": "x",
"eslint-plugin-lit": "x",
"eslint-plugin-storybook": "10.x",
"history": "x",
"karma": "x",
"karma-chrome-launcher": "x",
"karma-firefox-launcher": "x",
"karma-helpful-reporter": "x",
"karma-jasmine": "x",
"npm-watch": "0.x",
"pre-commit": "x",
"react-router": "x",
"storybook": "10.x",
"typescript": "5.x",
"@typescript/native-preview": "latest",
"vite": "6.x",
"web-component-analyzer": "2.x",
"execa": "x"
},
"dependencies": {
"@faker-js/faker": "x"
}
}