-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "otis-frontend",
"version": "0.0.1",
"description": "An application using WebPack, ReactJS, Redux, and ES6.",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.prod.js",
"test": "NODE_ENV=production mocha './tests/**/*.test.js' --compilers js:babel-core/register --require ./tests/testHelpers.js 'tests/**/*.@(js|jsx)' --require ignore-styles",
"test:watch": "npm run test -- --watch",
"lint": "eslint src",
"start": "node devServer.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Michael Farrell",
"license": "MIT",
"homepage": "http://mikeysax.com",
"dependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.2.1",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"express": "^4.13.4",
"fetch": "^1.1.0",
"fetch-everywhere": "^1.0.4",
"file-loader": "^0.8.5",
"immutable": "^3.8.1",
"install": "^0.8.1",
"jwt-decode": "^2.0.1",
"lodash": "^4.13.1",
"node-sass": "^3.7.0",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.3",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-enzyme": "^0.4.2",
"chai-immutable": "^1.5.4",
"enzyme": "^2.3.0",
"exports-loader": "^0.6.3",
"ignore-styles": "^4.0.0",
"imports-loader": "^0.6.5",
"jsdom": "9.2.1",
"jsdom-global": "2.0.0",
"localStorage": "^1.0.3",
"mocha": "^2.5.1",
"nock": "^8.0.0",
"npm-install-webpack-plugin": "^4.0.0",
"react-addons-test-utils": "^15.0.2",
"redux-mock-store": "^1.1.0",
"supertest": "^1.2.0"
}
}