-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 KB
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
69
70
{
"name": "paperless.node",
"dependencies": {
"@semantic-ui-react/css-patch": "^1.0.0",
"@types/better-sqlite3": "^7.6.12",
"@types/config": "^0.0.41",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.12",
"@types/csurf": "^1.11.2",
"@types/escape-html": "^1.0.2",
"@types/formidable": "^2.0.5",
"@types/fs-extra": "^9.0.13",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.17.7",
"@types/md5": "^2.3.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.19.11",
"axios": "^1.15.0",
"better-sqlite3": "^12.6.0",
"body-parser": "^1.20.0",
"concurrently": "^7.2.1",
"config": "^3.3.11",
"console-stamp": "^3.0.6",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"escape-html": "^1.0.3",
"express": "^4.19.2",
"express-rate-limit": "^6.4.0",
"formidable": "^2.0.1",
"fs-extra": "^10.1.0",
"googleapis": "^124.0.0",
"helmet": "^5.1.0",
"jsdom": "^24.1.1",
"lodash": "^4.18.1",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"prettier": "^2.7.1",
"semantic-ui-react": "^2.1.2",
"string-sanitizer": "^2.0.2",
"tslib": "^2.4.0",
"tsx": "^4.7.1",
"typescript": "^4.7.4"
},
"resolutions": {
"**/serve/ajv": "^8.17.1"
},
"private": true,
"type": "module",
"workspaces": [
"client",
"server",
"scripts"
],
"scripts": {
"dev": "concurrently \"yarn start\" \"cd client && HTTPS=true yarn start\"",
"windows_dev": "concurrently \"yarn start\" \"cd client && set HTTPS=true&&yarn start\"",
"build": "cd client && yarn run build",
"start": "tsx server/index.ts proxy",
"start_prod": "tsx server/index.ts",
"setup_wizard": "yarn tsx scripts/setup_wizard.ts",
"postinstall": "semantic-ui-css-patch",
"cleanup": "yarn tsx scripts/cleanup.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.19.0"
}
}