-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "email-app",
"version": "0.0.1",
"description": "Email server app",
"main": "webpack.config.js",
"scripts": {
"start": "node server.js",
"test": "node ./node_modules/mocha-webpack/bin/mocha-webpack --webpack-config webpack.test.config.js 'src/**/*.spec.js'",
"build": "NODE_ENV=production webpack -p --config ./webpack.config.prod.js --progress --profile --colors"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-autobind-class-methods": "^2.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"chai-spies": "^0.7.1",
"css-loader": "^0.25.0",
"enzyme": "^2.0.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"ignore-styles": "^5.0.1",
"jest": "^16.0.2",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"mocha": "^3.1.2",
"mocha-webpack": "^0.7.0",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.3.2",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"source-map-support": "^0.4.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"es6-promise": "^4.0.5",
"immutability-helper": "^2.0.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"moment": "^2.15.2",
"ramda": "^0.22.1",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-headroom": "^2.1.3",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"react-slide-deck": "^0.2.3",
"react-sticky": "^5.0.5",
"react-toolbox": "^1.2.3",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}