-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "redux-simple-starter",
"version": "1.0.0",
"description": "Simple starter package for Redux with React and Babel support",
"main": "index.js",
"repository": "[email protected]:StephenGrider/ReduxSimpleStarter.git",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node app.js",
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.2",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"jshint": "^2.10.0",
"jshint-loader": "^0.8.4",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.6.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"axios": "^0.17.0",
"babel-preset-stage-1": "^6.1.18",
"bootstrap": "^3.3.7",
"cross-env": "^5.1.1",
"express": "^4.16.2",
"lodash": "^4.17.21",
"react": "^15.6.2",
"react-bootstrap-date-picker": "^5.1.0",
"react-dom": "^15.6.2",
"react-images": "^0.5.11",
"react-modal": "^3.1.0",
"react-redux": "^4.4.1",
"react-redux-bootstrap-modal": "^1.1.0",
"react-router": "^2.0.1",
"react-slider": "^0.9.0",
"react-transition-group": "^2.2.1",
"redux": "^3.0.4",
"redux-form": "^7.1.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
}
}