-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 950 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
31
32
33
34
35
36
{
"name": "pocket",
"version": "1.0.0",
"description": "Self hosted Pocket app alternative",
"scripts": {
"start": "NODE_ENV=production nodemon -r dotenv-expand/config ./src/index.ts",
"dev": "NODE_ENV=development nodemon -r dotenv-expand/config ./src/index.ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier . --write"
},
"keywords": [
"pocket",
"self-hosted",
"foss"
],
"author": "Adam Faryna (https://faryna.io)",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"prepend-file": "^2.0.1",
"undici": "^5.27.0"
}
}