-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 KB
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
{
"name": "@fieldwork/react-router-redux-auth",
"version": "2.2.0",
"description": "React Router routes that redirect based on whether a user is logged in using @fieldwork/redux-auth",
"repository": {
"type": "git",
"url": "https://github.com/EMT/react-router-redux-auth"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && babel src -d dist --ignore **/*.test.js,**/*.test.jsx,**/__snapshots__",
"clean": "rm -rf ./dist",
"eslint": "eslint ./src --fix",
"flow": "flow",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"author": "Fieldwork",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@fieldwork/eslint-config-fieldwork": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"eslint": "^5.5.0",
"eslint-plugin-flowtype": "^2.50.0",
"jest": "^23.6.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.5.0",
"redux": "^4.0.0"
},
"peerDependencies": {
"react-router-dom": ">=4.3.1",
"react": ">=16.3.0",
"react-redux": ">=5.0.0",
"redux": ">=4.0.0"
},
"dependencies": {
"@fieldwork/redux-auth": "^2.3.0"
}
}