-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "ReactSimpleStarter",
"version": "0.0.1",
"description": "Simple frontend starter for react redux with webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"test": "mocha --compilers js:babel-core/register --require ./test/dom.js --require ./test/setup.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "AlexAube",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"bootstrap": "^4.0.0-alpha.6",
"bootstrap-sass": "^3.3.7",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"css-loader": "^0.28.0",
"enzyme": "^2.7.1",
"enzyme-redux": "^0.1.6",
"extract-text-webpack-plugin": "^2.1.0",
"jquery": "^3.1.1",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"moxios": "^0.4.0",
"node-sass": "^4.5.0",
"react-addons-test-utils": "^15.4.2",
"redux-mock-store": "^1.2.2",
"redux-test-utils": "^0.1.2",
"sass-loader": "^6.0.2",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"testdouble": "^2.1.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"anchorate": "^1.1.0",
"axios": "^0.16.1",
"jspdf": "^1.3.2",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-sticky": "^5.0.5",
"reactstrap": "^4.1.1",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
}
}