-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dogstack-agents",
"version": "1.1.0",
"description": "dogstack plugin to provide core user authentication, profiles, and relationships",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"postinstall": "node ./bin/link-db-migrations link",
"postuninstall": "node ./bin/link-db-migrations unlink",
"start": "node-dev example",
"test:deps": "dependency-check . && dependency-check . --extra --no-dev -i es2040",
"test:lint": "standard",
"test:node": "NODE_ENV=test ava",
"test:coverage": "NODE_ENV=test nyc npm run test:node",
"test:coverage:report": "nyc report --reporter=lcov npm run test:node",
"test": "npm-run-all -s test:node test:lint test:deps"
},
"browserify": {
"transform": [
"es2040"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dogstack/dogstack-agents.git"
},
"keywords": [],
"author": "Root Systems <hello@rootsystems.nz>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dogstack/dogstack-agents/issues"
},
"homepage": "https://github.com/dogstack/dogstack-agents#readme",
"devDependencies": {
"ava": "^0.20.0",
"deep-freeze": "0.0.1",
"dependency-check": "^2.7.0",
"node-dev": "^3.1.3",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"run-default": "^1.0.0",
"standard": "^8.6.0"
},
"dependencies": {
"@f/create-action": "^1.1.1",
"@material-ui/core": "^1.0.0",
"@root-systems/redux-form-validators": "^1.1.0",
"dogstack": "^1.0.0",
"es2040": "^1.2.6",
"feathers-action": "^2.4.0",
"feathers-action-react": "^2.2.1",
"feathers-authentication": "^1.2.6",
"feathers-authentication-client": "^0.3.2",
"feathers-authentication-jwt": "^0.3.1",
"feathers-authentication-local": "^0.3.4",
"feathers-authentication-oauth2": "^0.2.5",
"feathers-hooks-common": "ahdinosaur/feathers-hooks-common#build",
"feathers-knex": "^2.6.3",
"incremental-id": "^1.0.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"ramda": "^0.24.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-fela": "^5.3.0",
"react-hyperscript": "^3.0.0",
"react-redux": "^5.0.5",
"react-router-redux": "^4.0.8",
"recompose": "^0.25.0",
"redux": "^3.6.0",
"redux-auth-wrapper": "^2.0.1",
"redux-form": "^7.0.4",
"redux-form-material-ui": "^5.0.0-beta.3",
"redux-fp": "^0.2.0",
"redux-observable": "^0.14.1",
"reselect": "^3.0.1",
"rxjs": "^5.4.0"
}
}