forked from kylecorbelli/redux-token-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.19 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
{
"name": "redux-token-auth-saga",
"version": "0.19.0",
"description": "Devise Token Auth for Saga",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/ebubu/redux-token-auth-saga"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"keywords": [
"react",
"redux",
"auth",
"authentication",
"token",
"devise",
"oauth"
],
"author": "Kyle Corbelli",
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.8",
"codecov": "^2.3.0",
"jest": "^21.0.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.2"
},
"dependencies": {
"@types/react": "^16.0.5",
"@types/react-native": "^0.48.7",
"@types/react-redux": "^5.0.9",
"axios": "^0.16.2",
"react": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.16.0"
}
}