-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 781 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 781 Bytes
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
{
"name": "firestore-data",
"version": "1.0.1",
"description": "This package gives you a component that makes it easy to bind your Firestore queries to your React components.",
"main": "lib/index.js",
"scripts": {
"start": "npm run dev",
"build": "tsc -p .",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"firebase",
"firestore",
"data",
"react",
"next",
"nextjs"
],
"author": "Sam Corcos <sam@corcos.io>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@types/node": "^12.0.1",
"@types/react": "^16.8.17",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
}
}