-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
{
"name": "test",
"description": "",
"version": "1.0.0",
"author": "anton",
"license": "",
"keywords": [
"react",
"redux",
"es6",
"hmr",
"hot",
"babel",
"webpack"
],
"scripts": {
"clean:build": "node ./bin/clean.js createdir",
"build:html": "node ./bin/buildHtml.js",
"prestart": "node ./bin/clean.js",
"start": "webpack-dev-server --config ./config/webpack.config.dev.js --hot --inline --progress",
"prebuild": "npm run clean:build && npm run build:html",
"build": "export NODE_ENV=production & NODE_ENV=production & webpack -p --config ./config/webpack.config.prod.js --progress",
"lint": "eslint config src/js/** --ext .js",
"jscs": "jscs src/js/",
"test": "mocha --compilers js:babel-core/register,css:./test/unit/cssNullCompiler.js --require ./test/unit/testHelper.js --recursive ./test/unit",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-core": "6.7.7",
"babel-eslint": "6.0.3",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"chai": "3.5.0",
"chai-jquery": "2.0.0",
"cheerio": "0.20.0",
"colors": "1.1.2",
"copy-webpack-plugin": "2.1.3",
"css-loader": "0.23.1",
"eslint": "2.8.0",
"eslint-plugin-react": "5.0.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"jquery": "2.2.2",
"jscs": "2.10.1",
"jsdom": "8.2.0",
"mocha": "2.4.5",
"node-sass": "3.7.0",
"postcss-loader": "0.8.2",
"react-addons-test-utils": "15.0.1",
"react-hot-loader": "1.3.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"redux-immutable-state-invariant": "1.2.3",
"redux-slider-monitor": "1.0.5",
"rimraf": "2.5.2",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"autoprefixer": "6.3.6",
"classnames": "2.2.3",
"es6-viewpoint": "0.1.2",
"humps": "1.1.0",
"isomorphic-fetch": "2.2.1",
"lodash": "4.11.1",
"normalizr": "2.2.1",
"rc-progress": "2.0.6",
"react": "15.0.1",
"react-bootstrap": "0.30.3",
"react-display-name": "0.2.0",
"react-dom": "15.0.1",
"react-hot-loader": "1.3.0",
"react-jsonschema-form": "0.42.0",
"react-lazyload": "2.1.5",
"react-redux": "4.4.5",
"react-router": "2.3.0",
"react-slick": "0.14.5",
"react-tapper": "0.1.10",
"redux": "3.5.2",
"redux-form": "6.5.0",
"redux-thunk": "2.1.0",
"redux-undo": "0.6.1"
}
}