-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.89 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
{
"name": "teachaway-storybook",
"version": "1.0.0",
"description": "An example of Storybook on Create React App with Material-UI",
"contributors": [
{
"name": "Jennifer Proust",
"email": "[email protected]",
"url": "http://twitter.com/proustibat"
},
{
"name": "Michael Ohayon",
"email": "[email protected]",
"url": "http://twitter.com/MikkL"
}
],
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage",
"test:ci": "yarn test --ci --coverage --reporters=default --reporters=jest-junit --verbose",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"dev": "concurrently \"yarn start\" \"yarn storybook\"",
"prod": "concurrently \"yarn build\" \"yarn build-storybook\"",
"chromatic": "chromatic"
},
"dependencies": {
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.17",
"clsx": "^1.1.0",
"concurrently": "^5.1.0",
"i18next": "^19.3.4",
"i18next-browser-languagedetector": "^4.0.2",
"i18next-xhr-backend": "^3.2.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.4",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"storybook-addon-designs": "^5.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@harelpls/storybook-addon-materialui": "^2.0.0",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@testing-library/react": "^10.0.2",
"babel-loader": "^8.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.1.0",
"history": "^4.10.1",
"husky": "^4.2.3",
"jest-junit": "^10.0.0",
"prettier": "2.0.2",
"pretty-quick": "^2.0.1",
"react-router": "^5.1.2",
"storybook-addon-i18next": "^1.3.0",
"storybook-chromatic": "^3.5.2",
"storybook-react-router": "^1.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"jest": {
"clearMocks": true,
"coverageReporters": [
"json",
"lcov",
"html"
]
}
}