forked from redux-saga/redux-saga-beginner-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 963 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
{
"name": "redux-saga-beginner-tutorial",
"version": "0.0.1",
"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": "^7.12.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux": "^4.1.2",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"budo": "^11.6.4",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
}
}