-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.1 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
{
"name": "@a2000/root",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "tsc -b ./tsconfig.packages.json",
"create-changeset": "yarn changeset",
"commit": "git-cz",
"debug": "yarn build && web-test-runner --watch packages/**/*.test.js --node-resolve",
"develop": "tsc -b ./tsconfig.packages.json --watch",
"site:build": "yarn workspace site build",
"site:develop": "yarn workspace site develop",
"site:preview": "yarn workspace site preview",
"docs:build": "yarn workspace docs build",
"docs:develop": "yarn workspace docs develop",
"docs:preview": "yarn workspace docs preview",
"docs:deploy": "yarn workspace docs deploy",
"lint": "yarn eslint .",
"test": "yarn build && wtr",
"test:watch": "yarn build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"prepare": "husky install",
"release": "yarn build && changeset publish",
"version-changes": "changeset version",
"catalog:develop": "start-storybook -p 6006",
"catalog:build": "build-storybook",
"catalog:deploy": "yarn catalog:build && netlify deploy --dir=storybook-static --prod"
},
"workspaces": [
"packages/*",
"docs",
"site"
],
"author": "Andrico Karoulla",
"license": "ISC",
"dependencies": {
"lit": "^2.6.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/cz-commitlint": "^15.0.0",
"@commitlint/prompt": "^15.0.0",
"@open-wc/create": "^0.38.68",
"@open-wc/form-helpers": "0.2.0",
"@open-wc/testing": "^3.1.7",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/web-components": "^6.5.15",
"@types/svg-parser": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "5.48.2",
"@web/dev-server": "^0.1.35",
"@web/test-runner": "^0.18.2",
"@web/test-runner-playwright": "^0.11.0",
"commitizen": "^4.2.4",
"eslint": "^8.32.0",
"eslint-plugin-storybook": "^0.6.10",
"eslint-plugin-wc": "^1.4.0",
"glob": "^8.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"playwright": "^1.45.3",
"prettier": "^2.8.3",
"svg-parser": "^2.0.4",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"wsrun": "^5.2.4"
},
"description": "",
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrico1234/windows-2000-ui-library.git"
},
"bugs": {
"url": "https://github.com/andrico1234/windows-2000-ui-library/issues"
},
"homepage": "https://github.com/andrico1234/windows-2000-ui-library#readme",
"packageManager": "yarn@3.2.0"
}