-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 997 Bytes
/
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
{
"name": "redux-saga-beginner-tutorial",
"version": "0.0.0",
"description": "Redux Saga beginner tutorial",
"main": "lib/index.js",
"scripts": {
"test": "babel-node sagas.spec.js | tap-spec",
"start": "budo main.js:build.js --dir ./ --verbose --live -- -t babelify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redux-saga/redux-saga-beginner-tutorial.git"
},
"author": "Yassine ELOUAFI <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"redux": "^3.7.2",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "6.4.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.0.4",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
}
}