-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.15 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-scripts": "1.1.4",
"styled-components": "^3.3.3"
},
"scripts": {
"precommit": "lint-staged",
"commitmsg": "commitlint -E GIT_PARAMS",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"coverage": "yarn test --coverage",
"eject": "react-scripts eject",
"lint": "concurrently 'yarn lint:text' 'yarn lint:js' 'yarn lint:css' 'yarn lint:sc'",
"lint:fix": "concurrently 'yarn lint:text --fix' 'yarn lint:js --fix' 'yarn lint:css --fix' 'yarn lint:sc'",
"lint:text": "textlint 'docs/**'",
"lint:js": "eslint .",
"lint:css": "stylelint 'public/**/*.{s?(a|c)ss,html}'",
"lint:sc": "stylelint 'src/**/*.{js,jsx}'",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"commit": "git-cz",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-console": "^1.0.4",
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addon-notes": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/addon-storyshots": "^3.4.8",
"@storybook/addon-viewport": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-runtime": "^6.26.0",
"commitizen": "^2.10.1",
"concurrently": "^3.6.0",
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"jest-snapshot": "^23.4.1",
"jest-styled-components": "^5.0.1",
"lint-staged": "^7.2.0",
"open-browser-webpack-plugin": "^0.0.5",
"prettier": "^1.13.7",
"prh": "^5.4.3",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewire-hot-loader": "^1.0.1",
"react-app-rewire-styled-components": "^3.0.2",
"react-app-rewire-stylelint": "^0.1.1",
"react-app-rewired": "^1.5.2",
"react-stubber": "^1.0.0",
"react-test-renderer": "^16.4.1",
"storybook-addon-jsx": "^5.3.0",
"storybook-addon-smart-knobs": "^3.3.1",
"stylelint": "^9.3.0",
"stylelint-config-airbnb": "^0.0.0",
"stylelint-config-prettier": "^3.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^0.7.0",
"stylelint-processor-styled-components": "^1.3.1",
"stylelint-scss": "^1.2.1",
"stylelint-webpack-plugin": "0.10.4",
"textlint": "^10.2.1",
"textlint-rule-preset-ja-technical-writing": "^3.0.1",
"textlint-rule-prh": "^5.0.1",
"textlint-rule-spellcheck-tech-word": "^5.0.0"
},
"resolutions": {
"stylelint-webpack-plugin": "0.10.4",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1"
},
"lint-staged": {
"linters": {
"docs/**": [
"yarn lint:text --fix",
"git add"
],
"**/*.{js,jsx}": [
"yarn lint:js --fix",
"git add"
],
"public/**/*.{s?(a|c)ss,html}": [
"yarn lint:css --fix",
"git add"
],
"src/**/*.{js,jsx}": [
"yarn lint:sc",
"git add"
],
"**/*.test.{js,jsx}": [
"yarn coverage",
"git add"
]
},
"ignore": [
"/node_modules/**",
"/build/**"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}