forked from bashmish/storybook-builder-wds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.49 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "builder-wds",
"version": "0.0.1",
"description": "Storybook builder powered by web-dev-server",
"license": "MIT",
"author": "",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "// TODO: how to test this?"
},
"dependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/pluginutils": "^5.0.2",
"@storybook/core-common": "^7.0.0",
"@storybook/csf-tools": "^7.0.0",
"@storybook/preview": "^7.0.0",
"@web/dev-server": "^0.2.1",
"@web/dev-server-core": "^0.5.1",
"@web/dev-server-rollup": "^0.5.0",
"browser-assert": "^1.2.1",
"detect-port": "^1.5.1",
"es-module-lexer": "^1.2.1",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"koa-compose": "^4.1.0",
"process": "^0.11.10",
"rollup-plugin-external-globals": "^0.7.3"
},
"devDependencies": {
"@storybook/types": "^7.0.0",
"@types/detect-port": "^1.3.2",
"@types/fs-extra": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"prettier-plugin-package": "^1.3.0",
"typescript": "~5.0.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"eslint-config-prettier",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es2020": true
},
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write --ignore-path .eslintignore"
],
"*.md": [
"prettier --write --ignore-path .eslintignore"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 100,
"trailingComma": "all"
}
}