-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.66 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
82
{
"name": "product-selection",
"version": "1.0.0",
"description": "A demo application for a product selection page.",
"repository": {
"type": "git",
"url": "git://github.com/rickyH/product-selection.git"
},
"main": "server.js",
"scripts": {
"start": "node ./node_modules/concurrently/src/main.js --kill-others \"npm run api\" \"npm run dev-server\"",
"build": "BABEL_ENV=production ./node_modules/.bin/webpack --config webpack/webpack.config.production.js",
"api": "node bin/api.js",
"dev-server": "node webpack/webpack-dev-server.js",
"test": "./node_modules/karma/bin/karma start",
"test-api": "./node_modules/mocha/bin/mocha --timeout 5000 $(find api -name '*Test.js') --compilers js:babel-core/register"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap-sass": "^3.3.6",
"bootstrap-sass-loader": "^1.0.10",
"chai": "^3.5.0",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.7.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.0.0",
"redux-mock-store": "^1.0.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"supertest": "^1.2.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-register": "^6.8.0",
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.1",
"cors": "^2.7.1",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.0",
"react-bootstrap": "^0.29.3",
"react-cookie": "^0.4.5",
"react-dom": "^15.0.0",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-bootstrap": "^0.23.0",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.0.1"
}
}