-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "redbooth-react",
"version": "1.0.0",
"private": true,
"description": "RedBooth Test task",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run server\"",
"dev": "webpack-dev-server --progress --profile --colors",
"server": "node server/index.js",
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register ./app/**/*-test.js",
"test:lint": "./node_modules/.bin/eslint ./app/"
},
"author": "Aleksey Dmitriev",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"concurrently": "^3.1.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"fetch-intercept": "^2.2.1",
"humps": "^2.0.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.15.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-router-transition": "0.0.6",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"urlsearchparams": "^0.1.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-loader": "^1.6.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"mocha": "^3.1.2",
"node-sass": "^3.11.2",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dev-server": "^1.16.2"
}
}