-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 966 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 966 Bytes
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
{
"name": "laserfiche-repository-api-client-example",
"type": "module",
"version": "1.0.0",
"description": "Retrieve entries from a Laserfiche repository using the Laserfiche API and the client credentials flow.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"lint": "eslint . --ext .ts",
"build": "tsc -b --clean && tsc -b"
},
"author": "Laserfiche",
"license": "MIT",
"dependencies": {
"@laserfiche/lf-api-client-core": "^1.1.10",
"@laserfiche/lf-js-utils": "4.0.7",
"@laserfiche/lf-repository-api-client-v2": "^1.0.1",
"@types/node": "^18.11.9",
"dotenv": "^16.0.3",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.31.11"
}
}