generated from argahsuknesib/TS-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.62 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
{
"name": "solid-stream-aggregator",
"version": "1.0.0",
"description": "Aggregation on top of streams generated from a Solid Pod",
"main": "dist/index.js",
"scripts": {
"start": "npx tsc && cp -r ./src/static ./dist && node --max-old-space-size=8192 dist/index.js ",
"start-aggregation": "npx tsc && cp -r ./src/static ./dist && node --max-old-space-size=8192 dist/index.js aggregation",
"start-log": "npx tsc && cp -r ./src/static ./dist && node --max-old-space-size=8192 dist/index.js aggregation > logs/output.log",
"docs": "esdoc",
"test": "jest --coverage",
"test:watch": "jest --watch",
"start-solid-server": "cd scripts && rm -rf data/.internal/accounts && npx community-solid-server --config ./pod/config/unsafe.json -f ./data/ --seededPodConfigJson ./pod/pod_credentials.json -w 0",
"restart-solid-server": "cd scripts && npx community-solid-server --config ./pod/config/unsafe.json -f ./data/ -w 0",
"start-solid-server-extended-lock": "cd scripts && rm -rf data/.internal/ && npx community-solid-server --config ./pod/config/extendedlock.json -f ./data/ --seededPodConfigJson ./pod/pod_credentials.json",
"test-run": "cd scripts && rm -rf data/.internal/ && npx community-solid-server --config ./pod/config/auth.json -f ./data/ --seededPodConfigJson ./pod/pod_credentials.json --workers 1",
"lint:ts": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:ts:fix": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 --fix",
"lint:no-warning": "eslint . --ext ts --quiet --max-warnings 0"
},
"keywords": [],
"author": "Kushagra Singh Bisen",
"license": "ISC",
"devDependencies": {
"@types/bunyan": "^1.8.11",
"@types/jest": "^29.5.12",
"@types/websocket": "^1.0.6",
"@typescript-eslint/parser": "^6.21.0",
"esdoc": "^1.1.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-jsdoc": "^48.0.6",
"jest": "^29.3.1",
"ldfetch": "^1.2.8",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@treecg/ldes-snapshot": "^0.1.1",
"@treecg/versionawareldesinldp": "^0.3.0",
"@types/axios": "^0.14.0",
"bunyan": "^1.8.15",
"css-auth-login": "^1.0.8",
"rate-limited-ldp-communication": "^1.0.5",
"rdflib": "^2.2.31",
"rsp-js": "file:../RSP/RSP-JS",
"rspql-query-equivalence": "^1.0.3",
"sparqljs": "^3.6.2",
"tslog": "^4.8.2",
"websocket": "^1.0.34"
}
}