-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "example-pawjs-redux-saga",
"version": "1.0.0",
"description": "Example on using Redux Saga with PawJS",
"scripts": {
"start": "pawjs --env=development start",
"build": "pawjs --env=production --config=prod.pawconfig.json build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atyantik/example-pawjs-redux-saga.git"
},
"author": {
"name": "Atyantik Technologies",
"email": "[email protected]",
"url": "https://www.atyantik.com/"
},
"engines": {
"node": ">=10.11.0"
},
"contributors": [
{
"name": "Tirth Bodawala",
"email": "[email protected]",
"url": "https://www.atyantik.com/"
},
{
"name": "Yash Thakur",
"email": "[email protected]",
"url": "https://www.yashthakur.in/"
}
],
"devDependencies": {
"@pawjs/pawjs": "^2.2.6"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Atyantik/example-pawjs-redux-saga/issues"
},
"homepage": "https://github.com/Atyantik/example-pawjs-redux-saga#readme",
"dependencies": {
"@pawjs/redux": "^2.1.6",
"classnames": "^2.2.6",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-saga": "^0.16.2"
}
}