-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
93 lines (93 loc) · 2.54 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
{
"name": "bestbuy-sample-node-app",
"version": "1.2.0",
"description": "Sample React, Flux, Node.js app using the Best Buy API.",
"main": "server.js",
"scripts": {
"postinstall": "bower install && gulp build",
"start": "babel-node server.js",
"watch": "nodemon --exec babel-node -- server.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/BestBuyAPIs/bestbuy-sdk-js-sample-app.git"
},
"keywords": [
"bestbuy",
"api",
"retail",
"electronics",
"product reviews"
],
"author": "Ian Felton <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/BestBuyAPIs/bestbuy-sdk-js-sample-app/issues"
},
"homepage": "https://github.com/BestBuyAPIs/bestbuy-sdk-js-sample-app",
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/bluebird",
"<rootDir>/node_modules/bestbuy",
"<rootDir>/node_modules/request",
"<rootDir>/node_modules/http-signature",
"<rootDir>/node_modules/request-promise",
"<rootDir>/node_modules/alt",
"<rootDir>/node_modules/sshpk",
"<rootDir>/app/"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"engines": {
"node": "4.1.1"
},
"dependencies": {
"alt": "^0.17.3",
"bestbuy": "1.0.0",
"express": "^4.13.3",
"history": "^1.13.1",
"lodash": "^2.4.1",
"react": "0.14.2",
"react-dom": "0.14.2",
"react-router": "^0.13.0",
"request": "^2.40.0",
"swig": "^1.4.2"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-jest": "^6.0.1",
"babel-loader": "6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"bower": "^1.4.1",
"browserify": "^11.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-concat": "^2.6.0",
"gulp-cssmin": "^0.1.7",
"gulp-if": "^1.2.5",
"gulp-less": "^3.0.3",
"gulp-plumber": "^1.0.1",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jest": "^0.1.40",
"jest-cli": "^0.7.1",
"nodemon": "^1.7.1",
"react-addons-test-utils": "0.14.2",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
}
}