-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "@charlietango/storybook-utils",
"version": "1.1.0",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle build --target node --format cjs,es",
"dev": "microbundle watch",
"prepublish": "yarn build",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"@storybook/client-api": "*",
"@testing-library/react": "*",
"react": "*"
},
"dependencies": {
"@storybook/testing-react": "^1.3.0",
"globby": "^11.1.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && npx tsc",
"commit-msg": "npx commitlint --edit"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md,yml}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
0
]
}
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/config-conventional": "^13.1.0",
"@storybook/addons": "^6.5.6",
"@storybook/client-api": "^6.5.6",
"@storybook/preview-web": "^6.5.6",
"@storybook/react": "^6.5.6",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.0",
"@types/react": "^18.0.10",
"babel-jest": "^27.0.6",
"commitlint": "^13.1.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"microbundle": "^0.13.3",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.2"
}
}