-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "replicache-express",
"version": "0.3.0-beta.2",
"description": "Replicache Express Backend",
"homepage": "https://github.com/rocicorp/replicache-express",
"repository": "github:rocicorp/replicache-express",
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write 'src/*/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check 'src/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"build": "rm -rf lib && tsc",
"prepack": "npm run lint && npm run build",
"pretest": "npm run build",
"test": "mocha --ui=tdd 'lib/**/*.test.js'"
},
"engines": {
"//": "npm 7 not strictly *required* but without, you need to manually install the peerDependencies below",
"npm": ">=7.0.0"
},
"peerDependencies": {
"express": ">=4.17.13",
"pg": ">=8.6.0",
"pg-mem": ">=2.5.0",
"replicache": "13.0.0-beta.1",
"zod": ">=3.17.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.23",
"@types/pg": "^8.6.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.6",
"eslint": "^8.2.0",
"mocha": "^9.2.1",
"prettier": "^2.2.1",
"ts-node": "^10.7.0",
"typescript": "4.7.4"
},
"type": "module",
"files": [
"lib/*",
"!lib/*.test.*"
],
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"dependencies": {
"nanoid": "^4.0.0",
"replicache-transaction": "0.3.1"
}
}