forked from darondel-yoobic/stencil-storybook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "stencil-storybook",
"version": "1.0.0",
"description": "Stencil / Storybook Starter",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"collection": "dist/collection/collection-manifest.json",
"types": "dist/types/components.d.ts",
"scripts": {
"format": "prettier --write .",
"lint:code": "eslint .",
"lint:code:fix": "eslint --fix .",
"lint:style": "stylelint **/*.{css,scss}",
"lint:style:fix": "stylelint --fix **/*.{css,scss}",
"prepare": "husky install",
"stencil": "stencil build --watch",
"storybook": "start-storybook -p 6006",
"test": "stencil test --spec",
"test:watch": "stencil test --spec --watchAll"
},
"dependencies": {
"@stencil/core": "3.0.1"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@stencil/sass": "2.0.3",
"@storybook/addon-essentials": "6.5.16",
"@storybook/html": "6.5.16",
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jest": "27.4.5",
"jest-cli": "27.4.5",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"stylelint": "15.1.0",
"stylelint-config-standard-scss": "7.0.1",
"typescript": "4.9.5"
}
}