-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.59 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
{
"name": "typesafe-firestore",
"version": "1.0.3",
"license": "MIT",
"repository": "github:chaseholdren/typesafe-firestore",
"keywords": ["typescript", "firebase", "firestore"],
"browser": "build/index.js",
"main": "build/index.js",
"esnext": "index.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"peerDependencies": {
"firebase": "^6.0.0"
},
"devDependencies": {
"typescript": "^3.5.2",
"@typescript-eslint/parser": "^1.11.0",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"eslint": "^5.16.0",
"prettier": "^1.18.2",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"firebase": "6.2.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"parser": "@typescript-eslint/parser",
"env": {
"browser": true
},
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "./",
"extraFileExtensions": [
".tsx",
".ts"
]
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
},
"overrides": [
{
"files": [
"*.test.ts"
],
"env": {
"jest": true
}
}
]
},
"eslintIgnore": [
"build/*",
"node_modules/*"
]
}