-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
102 lines (102 loc) · 3.64 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
{
"name": "@reactioncommerce/components",
"version": "0.0.0-development",
"description": "Reaction Commerce - Example Storefront Component Library",
"homepage": "https://github.com/reactioncommerce/reaction-component-library",
"repository": "https://github.com/reactioncommerce/reaction-component-library",
"author": {
"name": "Reaction Commerce",
"email": "engineering@reactioncommerce.com",
"url": "https://reactioncommerce.com"
},
"license": "Apache-2.0",
"private": false,
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && rimraf dist-modules-temp && node ./scripts/prebuild.js",
"build": "npm run build:common && npm run build:modules",
"build:common": "BABEL_ENV=production babel --root-mode upward src --out-dir dist",
"build:modules": "BABEL_ENV=production BABEL_MODULES=1 babel --root-mode upward src --out-dir dist-modules-temp",
"postbuild": "BABEL_ENV=production babel-node --root-mode upward ./scripts/postbuild.js",
"release": "npm run build && npm publish dist"
},
"dependencies": {
"@babel/runtime": "~7.3.1",
"@material-ui/core": "~3.1.0",
"accounting-js": "~1.1.1",
"lodash.debounce": "~4.0.8",
"lodash.get": "~4.4.2",
"lodash.isempty": "~4.4.0",
"lodash.isequal": "~4.5.0",
"lodash.uniqueid": "~4.0.1",
"mdi-material-ui": "~5.8.0",
"react-is": "~16.9.0",
"react-select": "~2.4.0"
},
"devDependencies": {
"@babel/cli": "~7.5.5",
"@babel/core": "~7.5.5",
"@babel/node": "~7.5.5",
"@babel/plugin-proposal-class-properties": "~7.5.5",
"@babel/plugin-proposal-decorators": "~7.4.4",
"@babel/plugin-proposal-export-namespace-from": "~7.2.0",
"@babel/plugin-proposal-function-sent": "~7.2.0",
"@babel/plugin-proposal-json-strings": "~7.2.0",
"@babel/plugin-proposal-numeric-separator": "~7.2.0",
"@babel/plugin-proposal-throw-expressions": "~7.2.0",
"@babel/plugin-syntax-dynamic-import": "~7.2.0",
"@babel/plugin-syntax-import-meta": "~7.2.0",
"@babel/plugin-transform-runtime": "~7.5.5",
"@babel/preset-env": "~7.5.5",
"@babel/preset-react": "~7.0.0",
"@reactioncommerce/eslint-config": "~1.9.0",
"autoprefixer": "~7.1.6",
"babel-core": "~7.0.0-bridge.0",
"babel-eslint": "~10.0.1",
"babel-jest": "~24.1.0",
"babel-loader": "~7.1.2",
"babel-plugin-module-resolver": "~3.1.3",
"babel-plugin-rewire-exports": "~1.0.1",
"babel-plugin-styled-components": "~1.10.0",
"chalk": "~1.1.3",
"check-prop-types": "~1.1.2",
"composable-form-tests": "~1.0.1",
"dotenv": "~4.0.0",
"dotenv-expand": "~4.0.1",
"enzyme": "~3.8.0",
"enzyme-adapter-react-16": "~1.8.0",
"eslint": "~5.12.1",
"eslint-plugin-babel": "~5.3.0",
"eslint-plugin-import": "~2.15.0",
"eslint-plugin-jest": "~22.1.3",
"eslint-plugin-jsx-a11y": "~6.2.0",
"eslint-plugin-promise": "~4.0.1",
"eslint-plugin-react": "~7.12.4",
"fs-extra": "~5.0.0",
"jest": "~24.1.0",
"jest-junit": "~6.1.0",
"jest-styled-components": "~6.3.1",
"object-assign": "~4.1.1",
"promise": "~8.0.2",
"raf": "~3.4.1",
"react-dev-utils": "~9.0.1",
"react-styleguidist": "~6.5.3",
"react-test-renderer": "~16.9.0",
"replace-in-files": "~1.1.4",
"rimraf": "~2.6.3",
"semantic-release": "~15.13.3",
"whatwg-fetch": "~3.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@reactioncommerce/components-context": "~1.2.0",
"prop-types": "~15.7.2",
"react": "~16.9.0",
"react-container-query": "~0.11.0",
"react-stripe-elements": "~2.0.1",
"reacto-form": "~1.4.0",
"styled-components": "~3.3.3"
}
}