-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "bbyc-assessment",
"description": "A single page web app that features Best Buy products.",
"private": true,
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Justin Bull",
"email": "[email protected]",
"url": "http://jbull.ca/"
},
"homepage": "https://jabes.github.io/bbyc-assessment/public",
"repository": {
"type": "git",
"url": "https://github.com/jabes/bbyc-assessment"
},
"engines": {
"node": "8.4.x"
},
"devDependencies": {
"autoprefixer": "6.5.1",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"chromedriver": "2.24.1",
"css-loader": "0.25.0",
"eslint": "3.8.1",
"eslint-config-eslint": "3.0.0",
"eslint-loader": "1.6.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-react": "6.4.1",
"img-loader": "1.3.1",
"jasmine": "2.5.2",
"nightwatch": "0.9.8",
"node-sass": "3.10.1",
"postcss-loader": "1.0.0",
"sass-loader": "4.0.2",
"selenium-standalone": "5.7.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2"
},
"dependencies": {
"jsonp": "0.2.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-router": "2.8.1"
},
"scripts": {
"postinstall": "selenium-standalone install",
"start": "webpack-dev-server --inline --hot",
"build": "webpack --progress --display-error-details",
"watch": "webpack --watch",
"test:unit": "jasmine",
"test:e2e": "nightwatch",
"test": "npm run test:unit && npm run test:e2e",
"lint": "eslint src --debug"
}
}