-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "base-react",
"version": "1.0.0",
"description": "Simple starter package for Redux with React and Babel support",
"repository": "git@github.com:williameliel/base-react.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"jest": {
"setupFiles": [
"./src/setupTests.js"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-jest": "^21.2.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-15": "^1.0.5",
"jest": "^21.2.1",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"react-test-renderer": "^16.1.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-redux": "4.3.0",
"react-router": "^2.0.1",
"redux": "^3.0.4",
"redux-create-action-types": "^2.1.0",
"redux-thunk": "^2.2.0"
}
}