-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "freerstore",
"version": "0.4.0",
"main": "src/index.ts",
"author": "Jacob Weisenburger",
"license": "MIT",
"type": "module",
"npm": "https://www.npmjs.com/package/freerstore",
"repository": "https://github.com/JacobWeisenburger/freerstore",
"homepage": "https://github.com/JacobWeisenburger/freerstore",
"keywords": [
"firestore",
"firebase",
"zod",
"typescript"
],
"scripts": {
"start.dev": "node --no-warnings --loader ts-node/esm --es-module-specifier-resolution=node src/dev",
"dev": "nodemon",
"dev.cmd": "start cmd /k npm run dev",
"build": "cls && deno run -A scripts/build.ts",
"publish": "cls && deno run -A scripts/publish.ts",
"build.publish": "npm run build && npm run publish",
"firebase:emulators": "firebase emulators:start --only firestore",
"firebase:emulators.cmd": "start cmd /k npm run firebase:emulators",
"test": "cls && jest",
"test.cmd": "start cmd /k npm run test",
"test.watch": "npm run test -- --watch",
"test.watch.cmd": "start cmd /k npm run test.watch"
},
"nodemonConfig": {
"watch": [
"./"
],
"ignore": [
"./tmp"
],
"ext": "",
"exec": "cls && npm run start.dev"
},
"peerDependencies": {
"firebase": "^9.19.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@anatine/zod-mock": "^3.10.0",
"@faker-js/faker": "^7.6.0",
"@types/jest": "^29.5.1",
"@types/node-localstorage": "^1.3.0",
"axios": "^1.4.0",
"fake-indexeddb": "^4.0.1",
"jest": "^29.5.0",
"node-localstorage": "^2.2.1",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"localforage": "^1.10.0",
"radash": "^10.8.1"
}
}