-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"name": "google-sheet-sync",
"version": "1.0.0",
"scripts": {
"auth": "node src/auth-server/auth-server.js",
"prepare:pods": "cpy initial-pod-data/* pods/testing/ --flat",
"reset:pods": "rimraf pods && npm run prepare:pods",
"start": "node src/main.js",
"start:pods": "community-solid-server -c solidconfig.json -f pods --seededPodConfigJson seeded-pod-config.json",
"lint:js": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:js:fix": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0 --fix",
"lint:markdown": "markdownlint-cli2",
"lint:markdown:fix": "markdownlint-cli2-fix"
},
"devDependencies": {
"@solid/community-server": "^6.0.1",
"cpy-cli": "^5.0.0",
"eslint": "^8.45.0",
"eslint-plugin-jsdoc": "^46.4.6",
"markdownlint-cli2": "^0.8.1",
"rimraf": "^5.0.1"
},
"dependencies": {
"@comunica/query-sparql": "^2.8.1",
"@inrupt/solid-client-authn-core": "^1.17.1",
"@rmlio/yarrrml-parser": "^1.5.4",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"googleapis": "^122.0.0",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"n3": "^1.17.0",
"node-fetch": "^3.3.2",
"ws": "^8.13.0"
},
"type": "module"
}