-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.73 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
81
82
83
{
"name": "firereact",
"version": "0.9.7",
"description": "React hooks, components and utils for Firebase",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./*": "./dist/*.js"
},
"files": [
"/dist"
],
"scripts": {
"firebase:emulators:run": "firebase emulators:start --only functions,storage,firestore,auth",
"firebase:emulators:download": "concurrently \"firebase setup:emulators:firestore\" \"firebase setup:emulators:storage\" \"firebase setup:emulators:ui\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint src --ext .ts,.tsx --ignore-path .gitignore --fix",
"lint:check": "eslint src --ext .ts,.tsx --ignore-path .gitignore",
"formatter:run": "prettier --no-error-on-unmatched-pattern --write src/**/*.ts src/**/*.tsx *.ts *.tsx",
"formatter:check": "prettier --no-error-on-unmatched-pattern --check src/**/*.ts src/**/*.tsx *.ts *.tsx",
"build": "tsc --project tsconfig.build.json && vite build",
"remotion:logo:start": "cd remotion/logo && npm start",
"remotion:logo:build": "cd remotion/logo && npm run build:gif"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erayerdin/firereact.git"
},
"keywords": [
"react",
"firebase",
"hooks",
"components"
],
"author": "Eray Erdin",
"license": "MIT",
"bugs": {
"url": "https://github.com/erayerdin/firereact/issues"
},
"homepage": "https://github.com/erayerdin/firereact#readme",
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"firebase-tools": "^13.22.1",
"happy-dom": "^13.2.0",
"jsdom": "^23.2.0",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"peerDependencies": {
"firebase": "^11.0.0",
"react": "^18.2.0"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
}
}