-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
162 lines (162 loc) · 5.26 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
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
162
{
"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 --collectCoverage --json --outputFile=.jest-test-results.json",
"test:staged": "cross-env NODE_ENV=test jest --config ./config/jest.config.js --passWithNoTests",
"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 ./public,./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": "yarn run lint:js && yarn run lint:css",
"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.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@react-bootstrap/babel-preset": "^1.1.3",
"@storybook/addon-a11y": "^5.3.17",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-docs": "5.3.17",
"@storybook/addon-jest": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-storysource": "5.3.17",
"@storybook/addon-viewport": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/source-loader": "5.3.17",
"@storybook/storybook-deployer": "^2.8.3",
"@svgr/webpack": "^5.3.0",
"autoprefixer": "^9.7.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.3",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-next": "^1.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-extra-rules": "0.8.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.3",
"jest-sonar-reporter": "^2.0.0",
"jest-styled-components": "^7.0.0",
"lint-staged": "^10.0.9",
"mini-css-extract-plugin": "^0.9.0",
"plop": "^2.6.0",
"prettier": "2.0.2",
"rimraf": "^3.0.2",
"storybook-addon-designs": "^5.2.0",
"storybook-design-token": "^0.5.1",
"style-loader": "^1.1.3",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"yarn": "^1.22.4"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/config-angular-type-enum": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"execa": "^4.0.0",
"flexboxgrid": "^6.3.1",
"formik": "^2.1.4",
"fs-extra": "^9.0.0",
"lodash": "^4.17.15",
"mutationobserver-shim": "^0.3.3",
"normalize.css": "^8.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.13.1",
"react-hook-form": "^5.1.3",
"react-modal": "^3.11.2",
"styled-components": "^5.0.1",
"webpack": "^4.42.1",
"yup": "^0.28.3"
},
"peerDependencies": {
"@babel/runtime": ">=7.6.3",
"classnames": ">= 2.2.6",
"core-js": "^2.6.5",
"flexboxgrid": ">= 6.3.1",
"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
}
}