forked from reactioncommerce/reaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.76 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
{
"name": "reaction",
"description": "Reaction is a modern reactive, real-time event driven ecommerce platform.",
"version": "0.18.1",
"main": "main.js",
"directories": {
"test": "tests"
},
"homepage": "https://github.com/reactioncommerce/reaction",
"url": "https://github.com/reactioncommerce/reaction",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/reactioncommerce/reaction.git"
},
"author": "Reaction Commerce <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/reactioncommerce/reaction/issues"
},
"dependencies": {
"@reactioncommerce/authorize-net": "^1.0.7",
"accounting-js": "^1.1.1",
"autoprefixer": "^6.5.3",
"autosize": "^3.0.19",
"avalara-taxrates": "^1.0.1",
"babel-runtime": "^6.18.0",
"bcrypt": "^1.0.2",
"bootstrap": "^3.3.7",
"braintree": "^1.41.0",
"bunyan": "^1.8.1",
"bunyan-format": "^0.2.1",
"bunyan-loggly": "^1.1.0",
"classnames": "^2.2.5",
"country-data": "^0.0.31",
"css-annotation": "^0.6.2",
"deep-diff": "^0.3.4",
"dnd-core": "^2.0.2",
"faker": "^3.1.0",
"fibers": "^1.0.14",
"font-awesome": "^4.6.3",
"griddle-react": "^0.7.0",
"handlebars": "^4.0.5",
"i18next": "^4.1.0",
"i18next-browser-languagedetector": "^1.0.0",
"i18next-localstorage-cache": "^0.3.0",
"i18next-sprintf-postprocessor": "^0.2.2",
"immutable": "^3.8.1",
"jquery": "^3.1.1",
"jquery-i18next": "^1.1.0",
"later": "^1.2.0",
"lodash": "^4.17.2",
"meteor-node-stubs": "^0.2.3",
"moment": "^2.17.0",
"moment-timezone": "^0.5.9",
"nexmo": "^1.1.0",
"node-geocoder": "^3.15.0",
"nodemailer": "^2.6.4",
"nodemailer-wellknown": "^0.2.0",
"npm-shrinkwrap": "^6.0.2",
"paypal-rest-sdk": "^1.6.9",
"postcss": "^5.2.5",
"postcss-js": "^0.2.0",
"prerender-node": "^2.6.0",
"radium": "^0.18.1",
"react": "^15.3.2",
"react-addons-create-fragment": "^15.3.2",
"react-addons-pure-render-mixin": "^15.3.2",
"react-autosuggest": "^7.0.1",
"react-bootstrap": "^0.30.5",
"react-color": "^2.3.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.2",
"react-dropzone": "^3.6.0",
"react-helmet": "^3.1.0",
"react-komposer": "^2.0.0",
"react-onclickoutside": "^5.7.1",
"react-simple-di": "^1.2.0",
"react-taco-table": "^0.5.0",
"react-tether": "^0.5.2",
"react-textarea-autosize": "^4.0.5",
"sortablejs": "^1.5.0-rc1",
"stripe": "^4.11.0",
"sweetalert2": "^6.1.0",
"swiper": "^3.3.1",
"tether-drop": "^1.4.2",
"tether-tooltip": "^1.2.0",
"transliteration": "^1.1.9",
"twilio": "^2.11.1",
"url": "^0.11.0",
"velocity-animate": "^1.3.1",
"velocity-react": "^1.1.11"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-lodash": "^3.2.9",
"babel-preset-stage-2": "^6.17.0",
"browserstack-local": "^1.0.0",
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.3.0",
"js-yaml": "^3.6.1",
"react-addons-test-utils": "^15.3.2",
"wdio-allure-reporter": "^0.1.1",
"wdio-mocha-framework": "^0.5.4",
"webdriverio": "^4.2.16"
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
},
"scripts": {
"create-report": "allure generate allure-results/ -o ~/allure-report",
"open-report": "cd && allure report open",
"del-report": "rm -rf ~/allure-report && rm -rf allure-results",
"test-local": "wdio tests/runner/local.conf.js",
"test-browserstack": "wdio tests/runner/browserstack.conf.js; kill $(ps aux | grep '[b]rowserstack' | awk '{print $2}')"
}
}