-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "@comapeo/cloud",
"version": "0.1.0",
"description": "self-hosted cloud server for CoMapeo",
"main": "src/main.js",
"type": "module",
"files": [
"Dockerfile",
"fly.toml",
"src/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
"types": "./dist/app.d.ts",
"import": "./src/app.js"
},
"scripts": {
"start": "node src/server.js",
"build:clean": "rm -rf dist",
"build:typescript": "tsc --project ./tsconfig.build.json",
"build": "npm-run-all --serial build:clean build:typescript",
"format": "prettier --write .",
"test:prettier": "prettier --check .",
"test:eslint": "eslint .",
"test:typescript": "tsc --project ./tsconfig.dev.json",
"test:node": "node --test",
"test": "npm-run-all --aggregate-output --print-label --parallel test:*",
"watch:test:typescript": "tsc --watch --project ./tsconfig.dev.json",
"watch:test:node": "npm run test:node -- --watch",
"prepare": "husky || true",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/comapeo-cloud.git"
},
"author": "Awana Digital",
"license": "MIT",
"bugs": {
"url": "https://github.com/digidem/comapeo-cloud/issues"
},
"homepage": "https://github.com/digidem/comapeo-cloud#readme",
"devDependencies": {
"@comapeo/schema": "^1.2.0",
"@eslint/js": "^9.14.0",
"@mapeo/mock-data": "^2.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.8.4",
"@types/ws": "^8.5.13",
"eslint": "^9.14.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"iterpal": "^0.4.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"random-access-memory": "^6.2.1",
"streamx": "^2.20.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@comapeo/core": "^2.1.0",
"@fastify/sensible": "^5.6.0",
"@fastify/websocket": "^10.0.1",
"@mapeo/crypto": "^1.0.0-alpha.10",
"@sinclair/typebox": "^0.33.17",
"env-schema": "^6.0.0",
"fastify": "^4.28.1",
"string-timing-safe-equal": "^0.1.0",
"ws": "^8.18.0"
}
}