-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.82 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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@react-pakistan/react-storybook",
"version": "1.0.0",
"description": "Boilerplate template for React Storybook with TS and more...",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "index.d.tsx",
"scripts": {
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib",
"build-storybook": "build-storybook -c .storybook -o .out",
"build:ts": "tsc --project tsconfig.build.json",
"build:ts:cjs": "tsc --project tsconfig.build-cjs.json",
"clean": "yarn rimraf ./lib",
"deploy-storybook": "storybook-to-ghpages",
"lint": "npm-run-all --parallel lint:**",
"lint-staged": "lint-staged",
"lint:css": "stylelint './src/**/*.tsx'",
"lint:tools": "tslint '.storybook/*.js'",
"lint:ts": "tslint --project tsconfig.json --exclude '*/*icons/*'",
"lint:tsc": "yarn tsc --noEmit",
"publish:github": "npm publish",
"publish:npm": "npm publish --access public",
"screenshot": "npx storycap http://localhost:9001",
"start": "start-storybook -p 9001 -c .storybook",
"test": "jest --coverage --config jest/config.json",
"upgrade": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-pakistan/react-storybook.git"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint"
]
},
"keywords": [],
"author": "Taimoor Khan",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-pakistan/react-storybook/issues"
},
"homepage": "https://github.com/react-pakistan/react-storybook#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-google-analytics": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-notes": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/invariant": "^2.2.32",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/styled-components": "^5.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^25.5.3",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-powerplug": "^1.0.0",
"react-share": "^4.1.0",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"storybook-readme": "^5.0.8",
"storycap": "^2.3.5",
"style-loader": "^1.2.1",
"styled-components": "^5.1.0",
"stylelint": "^13.3.3",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.2",
"tslint": "^6.1.2",
"tslint-react": "^5.0.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"styled-components": "^5.1.0"
}
}