-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
132 lines (132 loc) · 4.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "feedo",
"version": "0.7.0",
"description": "An RSS/Atom feed reader that runs on your laptop or on almost any free hosting provider or server.",
"type": "module",
"keywords": [
"feed",
"reader",
"rss",
"atom",
"news"
],
"scripts": {
"postinstall": "npx next telemetry disable > /dev/null",
"dev": "dotenv -e .env -- run-s migrate:dev start:dev",
"start:dev": "next dev",
"reset:testdb": "dotenv -e .env.test -- rm -f ${FEEDO_DATABASE_URL}",
"test:unit": "NODE_ENV=test jest --verbose lib/** cli/**",
"test:unit:watch": "NODE_ENV=test jest --watch --verbose lib/** cli/**",
"test:e2e": "dotenv -e .env.test -- run-p -r test:e2e:start test:e2e:prepare",
"test:e2e:start": "dotenv -e .env.test -- run-s build reset:testdb migrate:dev start",
"test:e2e:prepare": "run-s test:e2e:wait test:e2e:run",
"test:e2e:wait": "echo $PORT;wait-on -t 60000 http-get://0.0.0.0:3001/status",
"test:e2e:run": "dotenv -e .env.test -- playwright test",
"test": "run-s lint test:unit test:e2e",
"lint": "eslint '**/*.{js,jsx}'",
"migrate:dev": "prisma migrate dev",
"migrate:production": "prisma migrate deploy",
"feed:sync": "./bin/feedo.js sync",
"build": "NODE_ENV=production next build",
"deploy:dokku": "dotenv run-s deploy:dokku:setup deploy:dokku:push",
"deploy:dokku:setup": "git remote | grep dokku || git remote add dokku ${DOKKU_USER:-dokku}@${DOKKU_HOST:-example.com}:${DOKKU_APP:-feedo}",
"deploy:dokku:push": "git push --force dokku HEAD:master",
"prepack": "npm run build",
"start": "NODE_ENV=production next start"
},
"prisma": {
"schema": "lib/services/db/schema.prisma"
},
"author": {
"email": "[email protected]",
"name": "Matías Surdi",
"url": "https://github.com/msurdi"
},
"homepage": "https://github.com/msurdi/feedo",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/msurdi/feedo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/msurdi/feedo.git"
},
"license": "MIT",
"bin": {
"feedo": "bin/feedo.js"
},
"files": [
".next/**",
"lib/**",
"bin/**",
"public/**",
"cli/**",
"next.config.js"
],
"engines": {
"node": ">=18",
"npm": ">=8"
},
"cacheDirectories": [
"node_modules",
".next/cache"
],
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"@next/eslint-plugin-next": "^12.2.2",
"@playwright/test": "^1.22.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@types/jest": "^29.2.0",
"autoprefixer": "^10.4.4",
"dotenv": "^16.0.1",
"dotenv-cli": "^6.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-playwright": "^0.11.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"wait-on": "^6.0.1"
},
"dependencies": {
"@prisma/client": "^4.0.0",
"classnames": "^2.3.1",
"commander": "^9.1.0",
"date-fns": "^2.22.1",
"downsize": "^0.0.8",
"execa": "^6.1.0",
"feedrat": "^0.4.12",
"http-status-codes": "^2.1.4",
"level": "^8.0.0",
"lodash-es": "^4.17.21",
"next": "^12.1.0",
"next-pwa": "^5.6.0",
"nprogress": "^0.2.0",
"parse-duration": "^1.0.0",
"prisma": "^4.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.28.1",
"react-use": "^17.3.2",
"rss-parser": "^3.12.0",
"sanitize-html": "^2.4.0",
"ulid": "^2.3.0",
"winston": "^3.3.3",
"yup": "^0.32.9"
}
}