-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
50
51
{
"name": "photoprism-helper",
"version": "1.0.3",
"description": "An unofficial companion tool created for use alongside PhotoPrism to enable api endpoints and automation.",
"main": "build/api.js",
"scripts": {
"format": "prettier --config .prettierrc src/**/*.ts --write",
"lint": "eslint . --ext .ts",
"build": "tsc",
"build:prep": "npm run format && npm run lint",
"build:docker": "docker build -t aerilym/photoprism-helper .",
"start:dev": "nodemon",
"start:prd": "node build/api.js",
"reinstall:wa": "npm remove winston-axios && npm install winston-axios",
"release:patch": "npm run build:prep && npm version patch",
"release:minor": "npm run build:prep && npm version patch",
"release:major": "npm run build:prep && npm version patch"
},
"keywords": [
"PhotoPrism",
"API",
"helper"
],
"author": "Ryan Miller",
"license": "ISC",
"dependencies": {
"axios": "^1.7.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"is-timezone": "^1.0.0",
"node-cron": "^3.0.1",
"winston": "^3.8.1",
"winston-axios": "^1.7.8"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
"@types/node": "^16.11.47",
"@types/node-cron": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.1.4",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}