-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.25 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": "cycled-react-app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --content-base public --port 3001 --inline --history-api-fallback --host 0.0.0.0 --hot",
"translations": "node generate-translations.js",
"lint": "node_modules/.bin/eslint src/** --ext .js,.jsx",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test:watch": "jest --watch",
"test": "jest",
"start": "webpack -p --config webpack.config.prod.js && node server"
},
"author": "Slava Kovalenko",
"license": "MIT",
"dependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-react-intl": "^2.2.0",
"babel-plugin-transform-runtime": "^6.8.0",
"classnames": "^2.2.5",
"cookies-js": "^1.2.2",
"css-loader": "^0.23.0",
"eslint": "^2.12.0",
"eslint-plugin-react": "^5.1.1",
"express": "^4.14.0",
"file-loader": "^0.8.4",
"glob": "^7.0.6",
"history": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"js-md5": "^0.4.1",
"lodash": "^4.13.1",
"moment": "^2.14.1",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-shallow-compare": "^15.1.0",
"react-dom": "^15.3.1",
"react-intl": "^2.1.5",
"react-redux": "^4.4.5",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-actions": "^0.10.0",
"redux-form": "^6.0.2",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"enzyme": "^2.4.1",
"eslint-plugin-flowtype": "^2.15.0",
"jest-cli": "^14.1.0",
"jsdom": "^9.4.2",
"node-sass": "^3.7.0",
"react-addons-test-utils": "^15.3.1",
"react-hot-loader": "^3.0.0-alpha.8",
"sass-loader": "^3.2.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
}
}