-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"name": "local-store",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"clean-build": "rimraf ./dist && tsc",
"copy-files": "copyfiles ./package.json ./license.md ./dist/",
"clean-prod": "rimraf ./dist/test",
"build": "npm run build-test && npm run clean-prod",
"build-test": "npm run clean-build && npx tsc && npm run copy-files",
"start-rr": "node --max-old-space-size=4096 ./dist/src/examples/rest/reader-rest.js",
"start-wr": "node ./dist/src/examples/rest/writer-rest.js",
"start-rc": "node --max-old-space-size=4096 ./dist/src/examples/cli/reader-cli.js",
"start-wc": "node ./dist/src/examples/cli/writer-cli.js",
"test": "npm run build-test && node --test ./dist/test ",
"docker-local": "docker build -f ./Dockerfile -t notification-hub-svc:local .",
"coverage": "c8 --config ./coverage-config.json npm run test"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"typescript": "^5.6.2"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"express-service-bootstrap": "^0.15.0",
"node-apparatus": "^0.1.14",
"redis": "^4.7.0"
}
}