This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "link-solid-boilerplate",
"version": "1.0.0",
"description": "A boilerplate to set up link apps which can be run stand-alone and loaded as plugins",
"main": "index.html",
"author": "Fletcher91 <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"rebuild": "yarn run clean && yarn run build",
"clean": "rm -rf dist/app/* && rm -rf dist/package/* && rm -rf dist/pane/*",
"build": "parcel build index.html --dist-dir dist --public-url /js --no-cache",
"serve": "parcel serve index.html --dist-dir dist --public-url /js"
},
"dependencies": {
"@ontola/link-devtools": "^2.0.2",
"@ontola/memoized-factory": "^2.0.1",
"@ontologies/core": "^2.0.2",
"@ontologies/dcterms": "^1.0.0",
"@ontologies/foaf": "^1.0.0",
"@ontologies/ld": "^1.0.0",
"@ontologies/owl": "^1.0.0",
"@ontologies/rdf": "^1.0.0",
"@ontologies/rdfs": "^1.0.0",
"@ontologies/schema": "^1.0.0",
"@ontologies/xsd": "^1.0.0",
"@rdfdev/actions": "^1.0.3",
"@rdfdev/collections": "^1.0.2",
"@rdfdev/delta": "^1.0.0",
"@rdfdev/iri": "^1.0.0",
"can-ndjson-stream": "^1.0.2",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"director": "^1.2.8",
"http-status-codes": "^1.4.0",
"link-lib": "0.0.0-deceb0f8",
"link-redux": "0.0.0-380164d2",
"n-quads-parser": "^2.1.1",
"n3": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "16.12.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-router": "^5.1.3",
"@types/react-router-dom": "^5.1.2",
"gh-pages": "^2.1.1",
"import-to-array": "^1.0.0",
"jest": "^24.9.0",
"parcel": "^2.0.0-beta.2",
"solid-auth-client": "^2.4.1",
"typescript": "^4.3.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"globals": {
"FRONTEND_ROUTE": true
}
}
}