-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.67 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
{
"name": "@stoplight/storybook-config",
"version": "0.0.0",
"description": "Shared storybook config for UI-Kit based project",
"keywords": [],
"homepage": "https://github.com/stoplightio/storybook-config",
"bugs": "https://github.com/stoplightio/storybook-config/issues",
"author": "Stoplight <support@stoplight.io>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/storybook-config"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"files": [
"**/*"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "sl-scripts build",
"commit": "git-cz",
"release": "sl-scripts release",
"release.dryRun": "sl-scripts release --dry-run --debug",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "sl-scripts test",
"test.prod": "yarn test --coverage --maxWorkers=2",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@storybook/addon-actions": "^5.3.8",
"@storybook/addon-knobs": "^5.3.8",
"@storybook/addon-links": "^5.3.8",
"@storybook/addon-options": "^5.3.8",
"@storybook/addons": "^5.3.8",
"@storybook/core": "^5.3.8",
"@storybook/react": "^5.3.8",
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/storybook__react": "^5.2.1",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"node-sass": "^4.13.1",
"node-sass-package-importer": "^5.3.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"sass-inline-svg": "^1.2.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"webpack": "^4.41.5"
},
"devDependencies": {
"@stoplight/scripts": "^5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-enzyme": "^7.1.2",
"lodash": "^4.17.15",
"react": "~16.11.0",
"react-dom": "~16.11.0",
"ts-jest": "^25.0.0",
"typescript": "3.7.5"
},
"lint-staged": {
"*.{ts,tsx}$": [
"yarn lint.fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@stoplight/scripts/release"
}
}