This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 3.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "root",
"private": true,
"workspaces": [
"packages/**",
"examples/**"
],
"scripts": {
"dev": "lerna run dev --scope @inrupt/experimental-solid-music",
"package": "lerna run package",
"demo:cli": "lerna run demo --scope @inrupt/experimental-human-graphql-query-example",
"demo:cli:build": "lerna run build --scope @inrupt/experimental-human-graphql-query-example",
"demo:cli:solid": "lerna run demo --scope @inrupt/experimental-human-solid-graphql-query-example",
"demo:introspection": "lerna run demo --scope @inrupt/experimental-graphql-introspection-ontology",
"demo:cli:solid:introspection": "lerna run demo --scope @inrupt/experimental-human-solid-graphql-introspection-query-example",
"audit-all": "lerna-audit --audit-level=moderate",
"test": "jest",
"build": "lerna run build",
"postinstall": "npm run build",
"ncu": "lerna exec -- ncu -u --target=minor",
"depcheck:check": "lerna-script depCheckTask",
"depcheck:fix": "lerna-script depFixTask",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint:check": "npm run lint:eslint && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.js --ext .ts \"packages\"",
"lint:prettier": "prettier \"packages/**/*.{ts,tsx,css}\" \"examples/**/*.{ts,tsx,css}\" \"**/*.{md,mdx,yml}\"",
"licenses:check:root": "license-checker --out license.csv --failOn --development \"AGPL-1.0-only; AGPL-1.0-or-later; AGPL-3.0-only; AGPL-3.0-or-later; Beerware; CC-BY-NC-1.0; CC-BY-NC-2.0; CC-BY-NC-2.5; CC-BY-NC-3.0; CC-BY-NC-4.0; CC-BY-NC-ND-1.0; CC-BY-NC-ND-2.0; CC-BY-NC-ND-2.5; CC-BY-NC-ND-3.0; CC-BY-NC-ND-4.0; CC-BY-NC-SA-1.0; CC-BY-NC-SA-2.0; CC-BY-NC-SA-2.5; CC-BY-NC-SA-3.0; CC-BY-NC-SA-4.0; CPAL-1.0; EUPL-1.0; EUPL-1.1; EUPL-1.1; GPL-1.0-only; GPL-1.0-or-later; GPL-2.0-only; GPL-2.0-or-later; GPL-3.0; GPL-3.0-only; GPL-3.0-or-later; SISSL; SISSL-1.2; WTFPL\"",
"licenses:check:dep": "lerna run licenses:check",
"licenses:check": "npm run licenses:check:root && npm run licenses:check:dep",
"lerna-version": "lerna version --no-push --no-git-tag-version",
"prepublishOnly": "npm run build",
"publish": "lerna publish",
"publish-preview": "lerna publish from-package"
},
"devDependencies": {
"@comunica/config-query-sparql-solid": "^2.1.0",
"@comunica/config-reasoning": "^0.2.0",
"@comunica/query-sparql": "^2.4.3",
"@graphql-tools/stitching-directives": "^2.3.11",
"@inrupt/eslint-config-lib": "^1.3.0",
"@rushstack/eslint-patch": "^1.2.0",
"@solid/community-server": "github:CommunitySolidServer/CommunitySolidServer#0d0369cb15adb722e4bbe690db4677143b96e64b",
"@types/follow-redirects": "^1.14.1",
"@types/jest": "^29.1.1",
"@types/n3": "^1.10.4",
"depcheck": "^1.4.3",
"eslint-plugin-unused-imports": "^2.0.0",
"graphql-tag": "^2.12.6",
"jest": "^29.1.2",
"lerna": "^6.0.3",
"lerna-audit": "^1.3.3",
"license-checker": "^25.0.1",
"npm-check-updates": "^16.3.8",
"nx": "^15.0.4",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}