forked from kylecorbelli/redux-token-auth
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.39 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
58
59
60
61
62
{
"name": "redux-token-auth",
"version": "0.19.1",
"description": "Redux actions and reducers to integrate with Devise Token Auth",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "node_modules/typescript/bin/tsc",
"watch": "npm-watch"
},
"watch": {
"build": "{src,test}/"
},
"repository": {
"type": "git",
"url": "https://github.com/kylecorbelli/redux-token-auth.git"
},
"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": "^23.3.10",
"codecov": "^3.1.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.1"
},
"dependencies": {
"@callstack/async-storage": "^1.1.0",
"@types/react": "^16.7.9",
"@types/react-native": "^0.57.15",
"@types/react-redux": "^6.0.10",
"axios": "^0.18.0",
"react": "^16.6.3",
"react-native-storage": "^1.0.0-beta.0",
"react-redux": "^5.1.1",
"redux": "^4.0.1"
}
}