-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
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": "@electric-examples/redis",
"version": "0.0.1",
"description": "An example Redis client for ElectricSQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": true,
"scripts": {
"dev": "tsx src/index.ts",
"backend:up": "PROJECT_NAME=redis-example pnpm -C ../../ run example-backend:up && pnpm db:migrate",
"backend:down": "PROJECT_NAME=redis-example pnpm -C ../../ run example-backend:down",
"db:migrate": "dotenv -e ../../.env.dev -- pnpm exec pg-migrations apply --directory ./db/migrations",
"typecheck": "tsc -p tsconfig.json",
"stylecheck": "eslint './*.{ts,js,tsx,jsx}' './tests/**/*.{ts,tsx}' './examples/**/*.{ts,tsx}' --no-error-on-unmatched-pattern"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electric-sql/electric.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/electric-sql/electric/issues"
},
"homepage": "https://github.com/electric-sql/electric#readme",
"dependencies": {
"@electric-sql/client": "workspace:*",
"redis": "^4.6.14"
},
"devDependencies": {
"@databases/pg-migrations": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"concurrently": "^8.2.2",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.3.10",
"prettier": "^3.6.2",
"shx": "^0.3.4",
"tsup": "^8.0.1",
"tsx": "^4.19.1",
"typescript": "^5.5.2"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.18.1"
},
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
}
}