-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.69 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
{
"name": "@scientist-softserv/webstore-component-library",
"version": "0.1.24",
"description": "A React component library intended for use with WebStore applications",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test-storybook": "test-storybook",
"build-lib": "rollup -c",
"watch-lib": "rollup -c --watch",
"release": "release-it",
"release:beta": "release-it --preRelease=beta",
"release:dry": "release-it --dry-run --no-npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scientist-softserv/webstore-component-library.git"
},
"keywords": [
"webstore",
"component",
"library",
"scientist"
],
"author": "Alisha Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/scientist-softserv/webstore-component-library/issues"
},
"homepage": "https://github.com/scientist-softserv/webstore-component-library#readme",
"engines": {
"node": "^18.13.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@storybook/testing-library": "^0.0.13",
"prop-types": "^15.8.1",
"react-bootstrap": "^2.7.0",
"react-bootstrap-storybook": "^1.5.1",
"react-country-region-selector": "^3.6.1",
"react-loader-spinner": "^5.3.4",
"storybook-addon-next-router": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@mdx-js/react": "^1.6.22",
"@rollup/plugin-node-resolve": "^15.0.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.12",
"@storybook/test-runner": "^0.7.2",
"babel-loader": "^8.2.5",
"css-loader": "^5.2.7",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^17.3.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.56.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0"
},
"overrides": {
"@mdx-js/react": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"contributors": [
"Alisha Evans (https://github.com/alishaevn)",
"Summer Cook (https://github.com/summer-cook)"
],
"publishConfig": {
"access": "public",
"ignore": [
".eslintrc"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"push": true,
"commit": true,
"tag": true,
"requireCommits": false,
"requireCleanWorkingDir": true
},
"npm": {
"publish": true,
"ignoreVersion": false,
"allowSameVersion": false
},
"hooks": {
"after:release": "echo Successfully released ${name} v${version}."
}
},
"npm": {
"publishPath": "dist"
}
}