-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.4 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.4 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
{
"name": "@moonwalker/orbit-ui-react",
"version": "1.14.37",
"description": "React UI components library",
"keywords": [
"css",
"components",
"reactjs"
],
"homepage": "https://github.com/moonwalker/orbit",
"repository": "moonwalker/orbit",
"author": "Vio <vio@moonwalker.tech>",
"license": "MIT",
"main": "dist/orbit-ui-react.js",
"module": "dist-esm/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build-esm && npm run build-lib",
"build-esm": "rm -fr ./dist-esm && babel -d dist-esm src",
"build-lib": "rm -fr ./dist && webpack --mode production",
"build-pages": "build-storybook",
"lint": "../../node_modules/.bin/eslint --ext js,jsx src",
"start": "storybook-server -p 8081",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"react-is": "^17.0.0"
},
"peerDependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"react": "^16.6.3 || ^17.0.0",
"react-dom": "^16.6.3 || ^17.0.0"
},
"devDependencies": {
"@babel/cli": "7.22.10",
"@babel/core": "7.22.11",
"@babel/plugin-transform-runtime": "7.22.10",
"@babel/preset-env": "7.22.5",
"@babel/preset-react": "7.22.5",
"@moonwalker/orbit-ui": "^1.14.37",
"@moonwalker/orbit-ui-stylus": "^1.14.37",
"@storybook/addon-actions": "7.0.22",
"@storybook/addon-essentials": "6.5.15",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-storyshots": "6.5.15",
"@storybook/addons": "6.5.15",
"@storybook/react": "6.5.15",
"@testing-library/react": "^14.0.0",
"autoprefixer": "10.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.6.4",
"babel-loader": "9.1.2",
"babel-plugin-require-context-hook": "1.0.0",
"classnames": "2.3.2",
"css-loader": "6.8.1",
"downshift": "7.6.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"lodash": "4.17.21",
"mini-css-extract-plugin": "2.7.6",
"postcss": "8.4.24",
"postcss-loader": "7.3",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"regenerator-runtime": "0.13.11",
"stats-webpack-plugin": "0.7.0",
"style-loader": "1.3.0",
"stylus": "0.59.0",
"stylus-loader": "4.3.3",
"webpack": "5.88.0",
"webpack-bundle-analyzer": "4.9.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.9.0"
}
}