forked from inrupt/solid-client-authn-js
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
30 lines (30 loc) · 875 Bytes
/
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
{
"name": "solid-auth-fetcher-node-example",
"version": "1.0.0",
"description": "An example application for solid-auth-fetcher",
"main": "./dist/server.js",
"scripts": {
"clean": "rm -rf ./dist",
"start": "ts-node src/server.ts",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev src/server.ts",
"build": "rm -rf dist && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/node-fetch": "^2.5.7",
"body-parser": "^1.19.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"solid-auth-fetcher": "file://../../"
},
"devDependencies": {
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.51",
"typescript": "^3.9.6"
}
}