-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 3.03 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
103
104
{
"name": "@phase2/sample-storybook-web-components",
"description": "Outline + Storybook + Web Components",
"main": "dist/outline.js",
"module": "dist/outline.js",
"files": [
"dist/",
".prettierrc.json",
".eslintrc.json",
"tailwind.config.js",
"outline.theme.css"
],
"type": "module",
"private": true,
"author": {
"name": "Phase2 Technology",
"url": "https://phase2technology.com"
},
"license": "BSD-3-Clause",
"publishConfig": {},
"scripts": {
"start": "yarn dev",
"dev": "yarn watch",
"watch": "yarn watch:vite && yarn watch:storybook",
"watch:vite": "yarn vite dev --port 6001 --open",
"watch:storybook": "storybook dev -p 6002",
"build": "npm-run-all -n -s 'build:**'",
"build:vite": "yarn vite build",
"build:storybook": "NODE_ENV=production storybook build -o storybook-static",
"clean": "npm-run-all -n -s 'clean:**'",
"clean:dist": "rimraf dist",
"clean:storybook": "rimraf storybook-static",
"clean:modules": "rimraf node_modules",
"reset": "yarn clean && yarn install",
"restart": "yarn reset && yarn dev",
"format": "npm-run-all -s 'format:**'",
"format:code": "eslint --fix . && prettier --write .",
"format:svg": "svgo -f ./src -r --config=svgo.config.cjs",
"format:css": "postcss ./src/**/*.css --replace --config package.json",
"fix": "yarn format"
},
"postcss": {
"map": false,
"plugins": {
"css-declaration-sorter": {
"order": "smacss"
}
}
},
"keywords": [
"web-components",
"typescript",
"lit"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@phase2/outline-adopted-stylesheets-controller": "^1.0.4",
"@phase2/outline-config": "^0.0.14",
"@phase2/outline-core": "^0.2.7",
"lit": "^3.1.2"
},
"devDependencies": {
"@lit/task": "^1.0.0",
"@storybook/addon-essentials": "^8.0.4",
"@storybook/addon-links": "^8.0.4",
"@storybook/blocks": "^8.0.4",
"@storybook/web-components": "^8.0.4",
"@storybook/web-components-vite": "^8.0.4",
"@types/eslint": "^8.56.6",
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"css-declaration-sorter": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^10.3.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-discard-comments": "^6.0.2",
"postcss-load-config": "^5.0.3",
"postcss-nested": "^6.0.1",
"postcss-nested-import": "^1.3.0",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup-plugin-terser": "^7.0.2",
"rsync": "^0.6.1",
"storybook": "^8.0.4",
"svgo": "^3.2.0",
"terser": "^5.30.0",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-ts": "1.3.2"
},
"packageManager": "[email protected]"
}