-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "solid-media",
"version": "1.0.3",
"description": "A media profile app build on Solid",
"homepage": "https://OxfordHCC.github.io/solid-media",
"repository": {
"type": "git",
"url": "git+https://github.com/OxfordHCC/solid-media"
},
"engines": {
"node": ">=14.x"
},
"main": "index.js",
"scripts": {
"preinstall": "npm-force-resolutions",
"start": "snowpack dev --polyfill-node",
"build": "snowpack build --polyfill-node && mkdirp ./build/login/ && ncp ./build/spaRedirect.html ./build/login/index.html && mkdirp ./build/view/ && ncp ./build/spaRedirect.html ./build/view/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build && ncp ./src/.nojekyll ./build/.nojekyll",
"deploy": "gh-pages -d build -t true"
},
"author": "OxfordHCC",
"dependencies": {
"@inrupt/solid-client": "^1.21.0",
"@inrupt/solid-client-authn-browser": "^1.11.7",
"@inrupt/vocab-common-rdf": "^1.0.3",
"node-gyp": "^9.3.1",
"preact": "^10.7.1",
"rdflib": "^2.2.19",
"wouter-preact": "^2.7.5"
},
"devDependencies": {
"@snowpack/plugin-typescript": "^1.2.1",
"gh-pages": "^3.2.3",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"npm-force-resolutions": "^0.0.10",
"snowpack": "^3.8.8",
"typescript": "^4.6.3"
},
"resolutions": {
"rollup-plugin-polyfill-node": "0.7.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 1 Safari version"
]
}