-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "mobx-firebase-store",
"version": "1.2.1",
"description": "mobx store with dynamic firebase subscriptions and data",
"keywords": [
"firebase",
"firebase-admin",
"mobx",
"observable",
"ssr",
"next",
"next.js",
"isomorphic",
"server-side rendering",
"store"
],
"main": "lib/index.js",
"readmeFilename": "./README.md",
"bugs": {
"url": "https://github.com/nyura123/mobx-firebase-store/issues"
},
"scripts": {
"test": "NODE_ENV=es2015compile mocha --compilers js:babel-core/register",
"compile": "NODE_ENV=es2015compile babel --plugins transform-object-assign --optional runtime -d lib/ src/",
"prepublish": "npm run compile"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"expect": "^1.20.1",
"faye-websocket": "^0.11.0",
"firebase": "^2.4.2",
"firebase-copy": "^0.2.0",
"firebase-server": "^0.5.4",
"firebase-nest": "^0.5.1",
"mobx": "^3.1.3",
"mocha": "^2.4.5",
"mockery": "^1.7.0",
"webpack": "^1.13.0"
},
"peerDependencies": {
"firebase-nest": "^0.5.1",
"mobx": "^3.1.3"
}
}