-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.63 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.63 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
{
"name": "@arcanetechnology/react-ui-lib",
"homepage": "http://arcanetechnology.github.io/react-ui-lib",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs.js",
"version": "1.9.1",
"private": false,
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/arcanetechnology/react-ui-lib.git"
},
"dependencies": {
"@babel/runtime": "^7.16.5",
"@contentful/rich-text-react-renderer": "^15.11.1",
"@contentful/rich-text-types": "^15.11.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/react-toggle": "^4.0.3",
"gh-pages": "^3.2.3",
"react-toggle": "^4.1.2",
"scroll-out": "^2.2.12"
},
"scripts": {
"test": "react-scripts test",
"test:generate-output": "react-scripts test --json --outputFile=.storybook/.jest-test-results.json --watchAll=false || true",
"storybook:no-tests": "start-storybook -p 6006 -s public",
"storybook": "npm run test:generate-output && export NODE_OPTIONS=--openssl-legacy-provider && npm run storybook:no-tests",
"build-lib": "rm -rf lib && rollup -c",
"build-static": "build-storybook",
"predeploy-storybook": "npm run build-static",
"deploy-storybook": "gh-pages -d storybook-static",
"release": "npm run build-lib && npm publish && npm run deploy-storybook"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:import/errors",
"plugin:import/typescript"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"classnames": "^2.3.1",
"firebase": "^9.6.3",
"next": ">=12.0.4",
"react": ">=17.0.2",
"react-dom": ">=17.0.2",
"react-scripts": "4.0.3",
"sass": "^1.44.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.4.1",
"@storybook/addon-essentials": "^6.4.1",
"@storybook/addon-jest": "^6.4.3",
"@storybook/addon-links": "^6.4.1",
"@storybook/node-logger": "^6.4.1",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.1",
"@storybook/testing-react": "^1.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.4.4",
"rollup": "^2.61.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.2"
}
}