-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 912 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
{
"name": "firestore-ts-repo",
"private": false,
"version": "0.5.0",
"type": "module",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"publish": "rimraf -rf dist && tsc && npm publish --access public",
"build": "rimraf -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/EmanuelU/firestore-ts-repo"
},
"keywords": [],
"author": "Emanuel Unge",
"license": "ISC",
"dependencies": {
"firebase": "^10.5.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.0.4"
},
"exports": {
".": "./dist/index.js"
}
}