forked from pagesource/atomic-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 5.17 KB
/
package.json
File metadata and controls
161 lines (161 loc) · 5.17 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@xt-pagesource/atomic-react-pattern-lib",
"version": "1.2.1",
"description": "Atomic React Pattern Library",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/es/index.js",
"style": "dist/styles/index.js",
"files": [
"CHANGELOG.md",
"dist",
"es"
],
"scripts": {
"test": "cross-env NODE_ENV=test jest --config ./config/jest.config.js",
"test:snap": "yarn run test -u",
"test:watch": "yarn run test --watch --verbose",
"audit": "yarn run build -- --report",
"clean:dist": "rimraf dist",
"build": "yarn run clean:dist && node scripts/build.js",
"generate": "plop --plopfile generators/index.js",
"storybook": "start-storybook -s ./lib/static -p 6006",
"build-storybook": "build-storybook -c .storybook -o ./out",
"deploy-storybook": "storybook-to-ghpages --existing-output-dir=./out --host-token-env-variable=GITHUB_TOKEN --ci",
"lint:js": "eslint lib/",
"lint:js:fix": "yarn run lint:js --fix",
"lint:css": "stylelint lib/**/*.js",
"lint:css:fix": "yarn run lint:css --fix",
"lint": "yarn run lint:js && yarn run lint:css",
"flow": "flow",
"flow:install": "flow-typed install",
"flow:coverage": "flow-coverage-report -i 'lib/**/*.js' -x 'lib/**/*.spec.js' -t html -t json -t text -o reports/flow/ --threshold 70",
"pretty": "prettier --write **/*.{js,json,css}",
"validate": "yarn run lint && yarn run test && yarn run build",
"auditNPM": "yarn audit --verbose --json",
"prepublishOnly": "yarn validate",
"npm-publish": "yarn publish --verbose --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagesource/atomic-react-components.git"
},
"bugs": {
"url": "https://github.com/pagesource/atomic-react-components/issues"
},
"keywords": [
"Atomic",
"React",
"Pattern Lib",
"Living Style Guide"
],
"publishConfig": {
"access": "public"
},
"author": "vinodloha",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@react-bootstrap/babel-preset": "^1.1.3",
"@storybook/addon-a11y": "^5.2.3",
"@storybook/addon-actions": "^5.2.3",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-docs": "5.2.3",
"@storybook/addon-knobs": "^5.2.3",
"@storybook/addon-links": "^5.2.3",
"@storybook/addon-storysource": "5.2.3",
"@storybook/addon-viewport": "^5.2.3",
"@storybook/addons": "^5.2.3",
"@storybook/react": "^5.2.3",
"@storybook/source-loader": "5.2.3",
"@storybook/storybook-deployer": "^2.8.1",
"autoprefixer": "^9.6.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-next": "^1.2.0",
"chalk": "^2.4.2",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-extra-rules": "0.8.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"execa": "^1.0.0",
"flow-bin": "^0.109.0",
"flow-coverage-report": "^0.6.1",
"flow-typed": "^2.6.1",
"fs-extra": "^7.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-sonar-reporter": "^2.0.0",
"jest-styled-components": "^6.3.3",
"lint-staged": "^9.4.2",
"mini-css-extract-plugin": "^0.8.0",
"plop": "^2.4.0",
"prettier": "1.18.2",
"react-storybook-addon-chapters": "^3.1.6",
"rimraf": "^2.6.3",
"storybook-addon-smart-knobs": "^5.0.0",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"webpack": "^4.31.0",
"yarn": "^1.15.2"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"classnames": "^2.2.6",
"core-js": "^2.6.5",
"flexboxgrid": "^6.3.1",
"formik": "^1.5.8",
"normalize.css": "^8.0.0",
"react": "^16.10.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.10.0",
"react-modal": "^3.6.1",
"styled-components": "^4.4.0",
"yup": "^0.27.0"
},
"peerDependencies": {
"@babel/runtime": ">=7.6.3",
"classnames": ">= 2.2.6",
"core-js": "^2.6.5",
"flexboxgrid": ">= 6.3.1",
"formik": ">=1.5.2",
"normalize.css": ">=8.0.1",
"react": ">=16.10.0",
"react-app-polyfill": ">=1.0.4",
"react-dom": ">=16.10.0",
"react-modal": ">=3.8.1",
"styled-components": ">=4.4.0",
"yup": ">=0.27.0"
},
"engines": {
"node": ">=10.13.0"
},
"jestSonar": {
"reportPath": "reports/tests",
"reportFile": "test-reporter.xml",
"indent": 2
}
}