-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
175 lines (175 loc) · 6.75 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
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "react-pie-menu",
"version": "1.0.0-alpha.4",
"description": "A configurable radial context menu for React",
"type": "module",
"module": "./dist/index.prod.js",
"main": "./dist/index.prod.cjs",
"exports": {
"development": {
"module": "./dist/index.dev.js",
"import": "./dist/index.dev.cjs.mjs",
"require": "./dist/index.dev.cjs"
},
"module": "./dist/index.prod.js",
"import": "./dist/index.prod.cjs.mjs",
"require": "./dist/index.prod.cjs",
"default": "./dist/index.prod.js"
},
"repository": "https://github.com/psychobolt/react-pie-menu",
"author": "psychobolt",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"flow-typed-update": "yarn node flow-typed-update.js",
"flow-typed-install": "yarn rimraf shared/flow-typed/npm && yarn run flow-typed-update",
"flow-typed-create-stub": "yarn flow-typed create-stub --libdefDir shared/flow-typed/",
"build:dev": "yarn cross-env BABEL_ENV=development rollup -c rollup.config.dev.mjs",
"build:prod": "yarn cross-env rollup -c rollup.config.prod.mjs",
"clean": "yarn rimraf \"dist/index?(-*).*.?(c|m)js?(.flow)\" && yarn rimraf \"packages/*/dist/index?(-*).*.?(c|m)js?(.flow)\"",
"build": "yarn run clean && yarn run build:dev && yarn run build:prod",
"watch": "yarn run build:dev --w",
"start": "yarn cross-env BABEL_ENV=development concurrently 'npm:watch' 'npm:storybook'",
"start-static": "yarn run build && yarn run build-storybook && yarn run serve-storybook",
"test": "yarn cross-env BABEL_ENV=test yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests",
"lint": "concurrently 'npm:lint:css' 'npm:lint:js'",
"lint:css": "yarn stylelint \"./(packages|stories|src)/**/*.js\"",
"lint:js": "yarn eslint \"**/*.?(c|m)js\"",
"storybook": "yarn start-storybook -p 6006",
"build-storybook": "build-storybook",
"serve-storybook": "yarn http-server storybook-static",
"bootstrap": "yarn node bootstrap.js",
"prepack": "yarn run build",
"dist": "yarn workspaces foreach --no-private npm publish --tolerate-republish --access public"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.4",
"@babel/eslint-parser": "7.21.3",
"@babel/helper-compilation-targets": "7.21.4",
"@babel/node": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/plugin-proposal-do-expressions": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"@babel/plugin-proposal-json-strings": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/plugin-proposal-throw-expressions": "7.18.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-flow": "7.21.4",
"@babel/plugin-transform-react-jsx": "7.21.0",
"@babel/preset-env": "7.21.4",
"@babel/preset-flow": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/template": "7.20.7",
"@fortawesome/fontawesome-svg-core": "6.1.2",
"@fortawesome/free-brands-svg-icons": "6.1.2",
"@fortawesome/free-solid-svg-icons": "6.1.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@mdx-js/react": "1.6.22",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.4",
"@rollup/plugin-node-resolve": "15.2.1",
"@rollup/plugin-replace": "5.0.2",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-console": "2.0.0",
"@storybook/addon-docs": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/jest": "0.2.1",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.2.0",
"@styled-system/color": "5.1.2",
"@styled-system/core": "5.1.2",
"@styled-system/theme-get": "5.1.2",
"@testing-library/react": "14.0.0",
"@yarnpkg/core": "3.5.0",
"@yarnpkg/sdks": "2.7.0",
"app-root-path": "3.1.0",
"babel-jest": "29.6.4",
"babel-loader": "9.1.3",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-named-exports-order": "0.0.2",
"babel-plugin-styled-components": "2.1.4",
"cash-true": "0.0.2",
"concurrently": "8.2.1",
"cross-env": "7.0.3",
"eslint": "8.14.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-webpack": "0.13.7",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.13",
"execa": "8.0.1",
"flow-bin": "0.183.0",
"flow-typed": "3.9.0",
"glob": "7.2.3",
"http-server": "14.1.1",
"is-class": "0.0.9",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"jest-specific-snapshot": "8.0.0",
"jest-styled-components": "7.1.1",
"lodash": "4.17.21",
"micromatch": "4.0.5",
"postcss": "8.4.28",
"postcss-scss": "4.0.7",
"prop-types": "15.8.1",
"raf": "3.4.1",
"raf-schd": "4.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-router-dom": "5.3.4",
"require-from-string": "2.0.2",
"rimraf": "5.0.1",
"rollup": "3.28.1",
"rollup-plugin-flow-entry": "0.3.6",
"rollup-plugin-mjs-entry": "0.1.1",
"rollup-plugin-terser": "7.0.2",
"slash": "3.0.0",
"source-map-loader": "4.0.1",
"styled-components": "5.3.11",
"styled-components-theme-connector": "0.1.8",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "5.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "https://github.com/psychobolt/stylelint-processor-styled-components",
"symlink-dir": "5.1.1",
"to-px": "1.1.0",
"webpack": "5.88.2",
"yargs": "17.7.2"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0",
"styled-components": "^5.2.5"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "yarn@3.5.0"
}