-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 981 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
37
38
39
40
41
{
"name": "drf-redux-auth",
"version": "0.2.6",
"description": "Async React/Redux Authentication library for Django Rest Framework Token Authentication",
"main": "./dist/index.js",
"scripts": {
"test": "jest src",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"authentication",
"django",
"react",
"redux",
"async",
"django",
"rest",
"framework",
"token"
],
"author": "Benjamin W Stookey",
"license": "MIT",
"repository": "github:jamstooks/drf-redux-auth",
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^23.2.0",
"jest-fetch-mock": "^1.6.5",
"redux-mock-store": "^1.4.0"
}
}