-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 789 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
29
30
31
32
33
34
35
{
"name": "uci",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "concurrently \"yarn run watch\" \"turbo run dev\"",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"watch": "lerna run watch --parallel"
},
"devDependencies": {
"concurrently": "^8.0.1",
"eslint-config-custom": "*",
"lerna": "^6.6.1",
"prettier": "latest",
"turbo": "^1.9.9"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ChatWithPDF/app"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.4.1",
"pdfjs-dist": "^3.4.120"
}
}